aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
}