summaryrefslogtreecommitdiff
path: root/tests/integration/compile_tests.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-07-24 01:11:38 +0100
committerGitHub <noreply@github.com>2024-07-24 02:11:38 +0200
commit445e05a39d005eab6f7d2f1f67a7ae2d7c85b1b3 (patch)
tree06cba5eccfe8777bda7edf17834bf30a973bf099 /tests/integration/compile_tests.rs
parent9114a2df69da9318c4e10887553b7daf77b0fa16 (diff)
Reland "fix: CFunctionInfo and CTypeInfo leaks (#24634)" (#24692)
Reverted in https://github.com/denoland/deno/commit/95847f4e9443ad8c8e0504c9fdd1d7f8eb4e588f.
Diffstat (limited to 'tests/integration/compile_tests.rs')
-rw-r--r--tests/integration/compile_tests.rs2
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);