Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
HardNorth committed Jun 13, 2023
1 parent d82537f commit 8f8225a
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions tests/integration/test_variables.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,9 @@ def test_no_required_variable_warning(mock_client_init, variable):

assert len(w) == 1
assert w[0].category == RuntimeWarning
mock_client = mock_client_init.return_value
assert mock_client.start_launch.call_count == 0
assert mock_client.start_test_item.call_count == 0
assert mock_client.finish_test_item.call_count == 0
assert mock_client.finish_launch.call_count == 0

mock_client = mock_client_init.return_value
assert mock_client.start_launch.call_count == 0
assert mock_client.start_test_item.call_count == 0
assert mock_client.finish_test_item.call_count == 0
assert mock_client.finish_launch.call_count == 0

0 comments on commit 8f8225a

Please sign in to comment.