aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/xyz/driver/core/TimeTest.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/scala/xyz/driver/core/TimeTest.scala')
-rw-r--r--src/test/scala/xyz/driver/core/TimeTest.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/scala/xyz/driver/core/TimeTest.scala b/src/test/scala/xyz/driver/core/TimeTest.scala
index 75588a2..5552a7d 100644
--- a/src/test/scala/xyz/driver/core/TimeTest.scala
+++ b/src/test/scala/xyz/driver/core/TimeTest.scala
@@ -76,7 +76,8 @@ class TimeTest extends FlatSpec with Matchers with Checkers {
it should "have correct textual representations" in {
import java.util.Locale
import java.util.Locale._
- Locale.setDefault(ENGLISH)
+ Locale.setDefault(US)
+
textualDate(TimeZone.getTimeZone("EDT"))(Time(1468937089834L)) should be("July 19, 2016")
textualTime(TimeZone.getTimeZone("PDT"))(Time(1468937089834L)) should be("Jul 19, 2016 02:04:49 PM")
}