Skip to content

Commit

Permalink
tests: fix typo in test name
Browse files Browse the repository at this point in the history
Change-Id: I9d64f20c7ed96939efc9c2b2fe5394d7a491fadd
  • Loading branch information
volans- committed Sep 14, 2021
1 parent e1dc641 commit 9a1d4c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cumin/tests/unit/transports/test_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ def test_progress_bars_are_closed(self, tqdm):
assert tqdm.mock_calls[-2] == mock.call().close()
assert tqdm.mock_calls[-1] == mock.call().close()

def test_progress_bar_is_updated_on_success(self, tqdm):
def test_progress_bars_is_updated_on_success(self, tqdm):
"""Progress bar is updated on success."""
progress = TqdmProgressBars()
progress.init(10)
Expand All @@ -572,7 +572,7 @@ def test_progress_bar_is_updated_on_success(self, tqdm):

assert mock.call().update(5) in tqdm.mock_calls

def test_progress_bar_is_updated_on_failure(self, tqdm):
def test_progress_bars_is_updated_on_failure(self, tqdm):
"""Progress bar is updated on failure."""
progress = TqdmProgressBars()
progress.init(10)
Expand Down

0 comments on commit 9a1d4c4

Please sign in to comment.