Skip to content

Commit 8bd7632

Browse files
committed
Fix test for #22
1 parent 585f819 commit 8bd7632

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/git.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ describe("getDiffForFile", () => {
5656

5757
const expectedCommand = "git";
5858
const expectedArgs =
59-
'diff --diff-algorithm=histogram --diff-filter=ACM -M100% --relative --staged --unified=0 "1234567"';
59+
'diff --diff-algorithm=histogram --diff-filter=ACM -M100% --relative --staged --unified=0 1234567';
6060

6161
const lastCall = mockedChildProcess.execFileSync.mock.calls.at(-1);
6262
const [command, argsIncludingFile = []] = lastCall ?? [""];

0 commit comments

Comments
 (0)