diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-03-23 10:58:53 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-23 10:58:53 -0400 |
commit | 81c5ddf9f2cec291be9b7e31e9d8c430585a7519 (patch) | |
tree | 1515f09c274983b23d24799c2f03bf04698d04d7 /cli/tests/integration/run_tests.rs | |
parent | 6e5a631fe094fa77209d51b65adfcc52d738e197 (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.rs | 4 |
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, }); |