Skip to content

Commit a541e8f

Browse files
Fix duplicate between tests in criterions suite (#854)
Signed-off-by: Emmanuel Ferdman <[email protected]>
1 parent 3094e3f commit a541e8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pypika/tests/test_criterions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ def test__between_datetime(self):
435435
)
436436
self.assertEqual("\"foo\" BETWEEN '2000-01-01T00:00:00' AND '2000-12-31T23:59:59'", str(c3))
437437

438-
def test__between_datetime(self):
438+
def test__between_time(self):
439439
c1 = Field("foo").between(time(0, 0, 0), time(23, 59, 59))
440440
c2 = Field("foo", table=self.t).between(time(0, 0, 0), time(23, 59, 59))
441441
c3 = Field("foo")[time(0, 0, 0) : time(23, 59, 59)]

0 commit comments

Comments
 (0)