Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ericof committed May 31, 2022
1 parent e26c465 commit 85a7884
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/vcs/test_clone.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,9 @@ def test_clone_should_invoke_vcs_command(
branch_info.insert(0, "--")

mock_subprocess.assert_any_call(
[repo_type, 'checkout', *branch_info], cwd=expected_repo_dir, stderr=subprocess.STDOUT
[repo_type, 'checkout', *branch_info],
cwd=expected_repo_dir,
stderr=subprocess.STDOUT,
)


Expand Down

0 comments on commit 85a7884

Please sign in to comment.