summaryrefslogtreecommitdiff
path: root/cli/tests/integration/run_tests.rs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-03-23 10:58:53 -0400
committerGitHub <noreply@github.com>2023-03-23 10:58:53 -0400
commit81c5ddf9f2cec291be9b7e31e9d8c430585a7519 (patch)
tree1515f09c274983b23d24799c2f03bf04698d04d7 /cli/tests/integration/run_tests.rs
parent6e5a631fe094fa77209d51b65adfcc52d738e197 (diff)
fix(inspect): ensure non-compact output when object literal has newline in entry text (#18366)
Fixes `Deno.inspect` to make an object literal non-compact when an entry has multiple lines in it.
Diffstat (limited to 'cli/tests/integration/run_tests.rs')
-rw-r--r--cli/tests/integration/run_tests.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/integration/run_tests.rs b/cli/tests/integration/run_tests.rs
index e4d670935..d46684905 100644
--- a/cli/tests/integration/run_tests.rs
+++ b/cli/tests/integration/run_tests.rs
@@ -3261,8 +3261,8 @@ itest!(unhandled_rejection_dynamic_import2 {
});
itest!(nested_error {
- args: "run run/nested_error.ts",
- output: "run/nested_error.ts.out",
+ args: "run run/nested_error/main.ts",
+ output: "run/nested_error/main.ts.out",
exit_code: 1,
});