diff options
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 2cae5ea98..20e43ca29 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -1239,6 +1239,7 @@ fn repl_test_function() { } #[test] +#[ignore] fn repl_test_multiline() { let (out, err) = util::run_and_collect_output( true, @@ -1374,7 +1375,7 @@ fn repl_test_save_last_thrown() { false, ); assert!(out.ends_with("1\n")); - assert_eq!(err, "Thrown: 1\n"); + assert_eq!(err, "Uncaught 1\n"); } #[test] @@ -1404,7 +1405,7 @@ fn repl_test_assign_underscore_error() { assert!( out.ends_with("Last thrown error is no longer saved to _error.\n1\n1\n") ); - assert_eq!(err, "Thrown: 2\n"); + assert_eq!(err, "Uncaught 2\n"); } #[test] |