We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0a941b commit 39a5122Copy full SHA for 39a5122
tests/test_core/test_coords.py
@@ -367,7 +367,9 @@ def test_get_coord_datetime(self):
367
d2 = datetime.datetime.fromisoformat("2017-09-18T02")
368
step = datetime.timedelta(minutes=1)
369
coord = get_coord(start=d1, stop=d2, step=step)
370
+ assert isinstance(coord, BaseCoord)
371
assert str(d1) == str(coord.min())
372
+ assert str(d2) == str(coord.max())
373
374
375
class TestCoordSummary:
0 commit comments