diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2024-07-20 18:05:35 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-21 03:05:35 +0200 |
commit | 6c5905dbc354ae701f06c734608af834a0ba844c (patch) | |
tree | 0e5d37db243cd6d891e9417f3e592ce2caab70be /tests/integration/compile_tests.rs | |
parent | 5f6d84a281da311af5f31b431fa9b2bf642a4f21 (diff) |
fix: CFunctionInfo and CTypeInfo leaks (#24634)
Trying out the deno_core patch
Ref https://github.com/denoland/deno_core/pull/832
Closes https://github.com/denoland/deno/issues/24575
---------
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Diffstat (limited to 'tests/integration/compile_tests.rs')
-rw-r--r-- | tests/integration/compile_tests.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/integration/compile_tests.rs b/tests/integration/compile_tests.rs index c902adfb2..17054637e 100644 --- a/tests/integration/compile_tests.rs +++ b/tests/integration/compile_tests.rs @@ -107,7 +107,6 @@ fn standalone_error() { // On Windows, we cannot assert the file path (because '\'). // Instead we just check for relevant output. assert_contains!(stderr, "error: Uncaught (in promise) Error: boom!"); - assert_contains!(stderr, "throw new Error(\"boom!\");"); assert_contains!(stderr, "\n at boom (file://"); assert_contains!(stderr, "standalone_error.ts:2:9"); assert_contains!(stderr, "at foo (file://"); @@ -147,7 +146,6 @@ fn standalone_error_module_with_imports() { // On Windows, we cannot assert the file path (because '\'). // Instead we just check for relevant output. assert_contains!(stderr, "error: Uncaught (in promise) Error: boom!"); - assert_contains!(stderr, "throw new Error(\"boom!\");"); assert_contains!(stderr, "\n at file://"); assert_contains!(stderr, "standalone_error_module_with_imports_2.ts:2:7"); output.assert_exit_code(1); |