mirror of
https://github.com/denoland/deno.git
synced 2025-01-03 04:48:52 -05:00
chore: fix child_process test (#22845)
This was failing in old versions of git.
This commit is contained in:
parent
644ac0fe43
commit
670e9a9be7
1 changed files with 1 additions and 1 deletions
|
@ -786,7 +786,7 @@ Deno.test(async function execFileWithUndefinedTimeout() {
|
||||||
const { promise, resolve, reject } = Promise.withResolvers<void>();
|
const { promise, resolve, reject } = Promise.withResolvers<void>();
|
||||||
CP.execFile(
|
CP.execFile(
|
||||||
"git",
|
"git",
|
||||||
["-v"],
|
["--version"],
|
||||||
{ timeout: undefined, encoding: "utf8" },
|
{ timeout: undefined, encoding: "utf8" },
|
||||||
(err) => {
|
(err) => {
|
||||||
if (err) {
|
if (err) {
|
||||||
|
|
Loading…
Reference in a new issue