diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-08-30 17:12:13 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-30 17:12:13 -0400 |
commit | 4a5642779e133425f4e6c75865de28952c761a8d (patch) | |
tree | 9035f4c4f1fbe8b287184edf16b2ebd0c53a4ff4 /tests/specs | |
parent | b1c6142f741a507ba6594ab174065e00213100b9 (diff) |
fix: upgrade deno_ast 0.42 (#25313)
Diffstat (limited to 'tests/specs')
-rw-r--r-- | tests/specs/install/move_after_install/__test__.jsonc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/specs/install/move_after_install/__test__.jsonc b/tests/specs/install/move_after_install/__test__.jsonc index 1699e9f6f..f46f22268 100644 --- a/tests/specs/install/move_after_install/__test__.jsonc +++ b/tests/specs/install/move_after_install/__test__.jsonc @@ -15,8 +15,10 @@ "output": "5\n" }, { - "commandName": "mv", - "args": "test-project test-project-moved", + "args": [ + "eval", + "Deno.renameSync('test-project', 'test-project-moved')" + ], "output": "" }, { |