Skip to content

Commit 39a5122

Browse files
committed
address code review
1 parent f0a941b commit 39a5122

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/test_core/test_coords.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,9 @@ def test_get_coord_datetime(self):
367367
d2 = datetime.datetime.fromisoformat("2017-09-18T02")
368368
step = datetime.timedelta(minutes=1)
369369
coord = get_coord(start=d1, stop=d2, step=step)
370+
assert isinstance(coord, BaseCoord)
370371
assert str(d1) == str(coord.min())
372+
assert str(d2) == str(coord.max())
371373

372374

373375
class TestCoordSummary:

0 commit comments

Comments
 (0)