Skip to content

Commit

Permalink
fix str comp
Browse files Browse the repository at this point in the history
  • Loading branch information
d-chambers committed Jan 5, 2025
1 parent 39a5122 commit 0e6bdbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_core/test_coords.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ def test_get_coord_datetime(self):
coord = get_coord(start=d1, stop=d2, step=step)
assert isinstance(coord, BaseCoord)
assert str(d1) == str(coord.min())
assert str(d2) == str(coord.max())
assert str(d2) == str(coord.max() + coord.step)


class TestCoordSummary:
Expand Down

0 comments on commit 0e6bdbb

Please sign in to comment.