Skip to content

Commit

Permalink
Fix PEP8 sanity issue
Browse files Browse the repository at this point in the history
  • Loading branch information
allenrobel committed Feb 28, 2024
1 parent 18ae3cd commit c3d8ae2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,8 @@ def test_image_upgrade_upgrade_task_result_00040(image_upgrade_task_result) -> N
instance = image_upgrade_task_result
result = instance.failed_result
assert isinstance(result, dict)
assert result["changed"] == False
assert result["failed"] == True
assert result["changed"] is False
assert result["failed"] is True
for key in test_diff_keys:
assert result["diff"][key] == []
for key in test_response_keys:
Expand Down Expand Up @@ -198,7 +198,7 @@ def test_image_upgrade_upgrade_task_result_00050(image_upgrade_task_result) -> N
instance = image_upgrade_task_result
result = instance.module_result
assert isinstance(result, dict)
assert result["changed"] == False
assert result["changed"] is False
for key in test_keys:
assert result["diff"][key] == []
for key in test_keys:
Expand Down

0 comments on commit c3d8ae2

Please sign in to comment.