diff options
Diffstat (limited to 'cli/tests/integration/repl_tests.rs')
-rw-r--r-- | cli/tests/integration/repl_tests.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/integration/repl_tests.rs b/cli/tests/integration/repl_tests.rs index f69f71398..43e601739 100644 --- a/cli/tests/integration/repl_tests.rs +++ b/cli/tests/integration/repl_tests.rs @@ -375,7 +375,7 @@ fn typescript_decorators() { Some(vec![("NO_COLOR".to_owned(), "1".to_owned())]), false, ); - assert_ends_with!(out, "undefined\n[Function: Test]\n2\n"); + assert_ends_with!(out, "undefined\n[Class: Test]\n2\n"); assert!(err.is_empty()); } @@ -943,7 +943,7 @@ fn npm_packages() { ); assert_contains!(out, "Module {"); - assert_contains!(out, "Chalk: [Function: Chalk],"); + assert_contains!(out, "Chalk: [Class: Chalk],"); assert!(err.is_empty()); } |