Skip to content

Commit

Permalink
Run pyupgrade against modified files in the merge-forward
Browse files Browse the repository at this point in the history
Signed-off-by: Pedro Algarvio <[email protected]>
  • Loading branch information
s0undt3ch committed Oct 29, 2023
1 parent c8f5d58 commit 8edd383
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/pytests/unit/client/ssh/test_single.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,8 +302,8 @@ def test_execute_script(opts, target, tmp_path):
assert ret == exp_ret
assert mock_cmd.call_count == 2
assert [
call("/bin/sh '{}'".format(script)),
call("rm '{}'".format(script)),
call(f"/bin/sh '{script}'"),
call(f"rm '{script}'"),
] == mock_cmd.call_args_list


Expand Down

0 comments on commit 8edd383

Please sign in to comment.