Skip to content

Commit eb242c0

Browse files
committed
Fix flake8
1 parent e95c677 commit eb242c0

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tests/integration/test_pass_failed_skipped.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,8 @@ def test_simple_tests(mock_client_init, test, expected_run_status, expected_item
5858
if i == 0:
5959
actual_status = finish_test_step["status"]
6060
assert (
61-
actual_status == expected_item_status,
62-
f'Invalid item status, actual "{actual_status}", expected: "{expected_item_status}"',
63-
)
61+
actual_status == expected_item_status
62+
), f'Invalid item status, actual "{actual_status}", expected: "{expected_item_status}"'
6463

6564
finish_launch_call_args = mock_client.finish_launch.call_args_list
6665
assert len(finish_launch_call_args) == 1

0 commit comments

Comments
 (0)