aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/xyz/driver/core/DateTest.scala
diff options
context:
space:
mode:
authorzachdriver <zach@driver.xyz>2017-05-18 16:12:32 -0700
committerGitHub <noreply@github.com>2017-05-18 16:12:32 -0700
commit6427b9dc1a60b670c70aca05f419e3fc3313cf6a (patch)
tree92ea3d3ab0b4b2f01531916e1ab7ae3fc5d1b24e /src/test/scala/xyz/driver/core/DateTest.scala
parent3d2e8eb57e074e51da53d8c239c63b4ce7e5a820 (diff)
parent06cecf3761c77efbbc35b3d36178b34dd7ea7e64 (diff)
downloaddriver-core-6427b9dc1a60b670c70aca05f419e3fc3313cf6a.tar.gz
driver-core-6427b9dc1a60b670c70aca05f419e3fc3313cf6a.tar.bz2
driver-core-6427b9dc1a60b670c70aca05f419e3fc3313cf6a.zip
Merge pull request #34 from drivergroup/zsmith/PDW-336-gcsv0.12.7
PDW-336 Add GCS file storage implementation
Diffstat (limited to 'src/test/scala/xyz/driver/core/DateTest.scala')
-rw-r--r--src/test/scala/xyz/driver/core/DateTest.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/scala/xyz/driver/core/DateTest.scala b/src/test/scala/xyz/driver/core/DateTest.scala
index c1185cd..0cf8a9e 100644
--- a/src/test/scala/xyz/driver/core/DateTest.scala
+++ b/src/test/scala/xyz/driver/core/DateTest.scala
@@ -38,7 +38,7 @@ class DateTest extends FlatSpec with Matchers with Checkers {
case Seq(a, b) =>
if (a.year == b.year) {
if (a.month == b.month) {
- a.day < b.day
+ a.day <= b.day
} else {
a.month < b.month
}