Skip to content

Commit 88fab18

Browse files
dsherretnathanwhit
authored andcommitted
chore: fix child_process test (#22845)
This was failing in old versions of git.
1 parent 465af5c commit 88fab18

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/unit_node/child_process_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -786,7 +786,7 @@ Deno.test(async function execFileWithUndefinedTimeout() {
786786
const { promise, resolve, reject } = Promise.withResolvers<void>();
787787
CP.execFile(
788788
"git",
789-
["-v"],
789+
["--version"],
790790
{ timeout: undefined, encoding: "utf8" },
791791
(err) => {
792792
if (err) {

0 commit comments

Comments
 (0)