Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nickrayjones committed Dec 18, 2023
1 parent 5568e98 commit fbadeaf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/core/baseline_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def test_diff_branch_diff(self):
'detect_secrets.core.baseline.subprocess.check_output',
(
SubprocessMock(
expected_input='git diff --name-only --diff-filter=ACMRTUX'
expected_input='git diff --name-only --diff-filter=ACMRTUX '
+ 'origin/master -- ./test_data/files',
mocked_output=b'test_data/files/file_with_secrets.py\n',
),
Expand All @@ -212,7 +212,7 @@ def test_diff_branch_diff2(self):
'detect_secrets.core.baseline.subprocess.check_output',
(
SubprocessMock(
expected_input='git diff --name-only --diff-filter=ACMRTUX'
expected_input='git diff --name-only --diff-filter=ACMRTUX '
+ 'origin/master -- ./test_data/files',
mocked_output=b'test_data/files/file_with_secrets.py\n'
+ 'test_data/files/tmp/file_with_secrets.py\n',
Expand Down

0 comments on commit fbadeaf

Please sign in to comment.