From 3ad1ecf153a98e84dc1b01f99714e3062c9f70b3 Mon Sep 17 00:00:00 2001 From: Ganesh Subramanian Date: Thu, 21 Aug 2014 12:11:19 +0530 Subject: [PATCH] Added import mapping for Timestamp --- src/test/scala/BasicJavaGeneratorTest.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/scala/BasicJavaGeneratorTest.scala b/src/test/scala/BasicJavaGeneratorTest.scala index e1bb958f4cb..6b0afd79705 100644 --- a/src/test/scala/BasicJavaGeneratorTest.scala +++ b/src/test/scala/BasicJavaGeneratorTest.scala @@ -123,7 +123,7 @@ class BasicJavaGeneratorTest extends FlatSpec with ShouldMatchers { it should "honor the import mapping" in { config.importMapping("Date") should be ("java.util.Date") config.importMapping("DateTime") should be ("org.joda.time.*") - config.importMapping("TimeStamp") should be ("java.sql.Timestamp") + config.importMapping("Timestamp") should be ("java.sql.Timestamp") config.importMapping("Set") should be ("java.util.*") }