diff options
author | DjDeveloper <43033058+DjDeveloperr@users.noreply.github.com> | 2022-01-05 12:55:31 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-05 12:55:31 +0530 |
commit | 9778545048a9908f62c24b93ae3ec0762e3db2d9 (patch) | |
tree | 3d329ea75566cf5e56d863d7ea9806711d61fe65 /test_ffi/tests/integration_tests.rs | |
parent | c4a0a43ce832c85de6bb97a4afc9ecf915e63e5a (diff) |
fix(ext/ffi): throw errors instead of panic (#13283)
Diffstat (limited to 'test_ffi/tests/integration_tests.rs')
-rw-r--r-- | test_ffi/tests/integration_tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test_ffi/tests/integration_tests.rs b/test_ffi/tests/integration_tests.rs index 99a17f0a9..13c4e1485 100644 --- a/test_ffi/tests/integration_tests.rs +++ b/test_ffi/tests/integration_tests.rs @@ -24,6 +24,7 @@ fn basic() { .arg("--allow-ffi") .arg("--allow-read") .arg("--unstable") + .arg("--quiet") .arg("tests/test.js") .env("NO_COLOR", "1") .output() @@ -37,7 +38,6 @@ fn basic() { println!("{:?}", output.status); assert!(output.status.success()); let expected = "\ - dlopen doesn't panic\n\ something\n\ [1, 2, 3, 4, 5, 6, 7, 8]\n\ [1, 2, 3, 4, 5, 6, 7, 8] [9, 10]\n\ |