Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/bmi_tester/_tests/stage_1/time_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ def test_get_start_time(initialized_bmi):
start = initialized_bmi.get_start_time()

assert isinstance(start, float)
assert start == approx(0.0)


@pytest.mark.dependency()
Expand Down Expand Up @@ -59,7 +58,7 @@ def test_get_current_time(initialized_bmi):
@pytest.mark.skip()
@pytest.mark.dependency(depends=["test_get_start_time"])
def test_get_end_time(initialized_bmi):
"""Test that there is a stop time."""
"""Test that there is a stop time (and that it's after the start)."""
start = initialized_bmi.get_start_time()
stop = initialized_bmi.get_end_time()

Expand Down