Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Fixes tests failing with 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
desertaxle committed Apr 2, 2024
1 parent 19bc9c4 commit 6e932c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_client_waiter.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def test_flow():
return waiter

test_flow()
assert mock_waiter.wait.called_once_with("JobExists")
mock_waiter.wait.assert_called_once_with("JobExists")


@mock_ec2
Expand All @@ -66,4 +66,4 @@ def test_flow():
return waiter

test_flow()
assert mock_waiter.wait.called_once_with("instance_exists")
mock_waiter.wait.assert_called_once_with("instance_exists")

0 comments on commit 6e932c5

Please sign in to comment.