Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
KulaginVladimir committed Oct 7, 2024
1 parent 7ca7997 commit 4903d7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/test_exports/test_txt_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,11 +176,11 @@ def my_export(self, tmpdir):

return my_export

def test_final_time_none(self, my_export):
def test_final_time_is_none(self, my_export):
assert my_export.is_last(1, None) == True

@pytest.mark.parametrize("current_time,output", [(1, False), (3, False), (5, True)])
def test_times_not_none(self, current_time, output, my_export):
def test_times_is_none(self, current_time, output, my_export):
final_time = 5
assert my_export.is_last(current_time, final_time) == output

Expand Down

0 comments on commit 4903d7e

Please sign in to comment.