diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2021-01-07 05:51:15 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-07 05:51:15 -0500 |
commit | cb658f5ce588dfac4826a5ce4d343738759c0c84 (patch) | |
tree | 78e7c6f3c738e8641db49bc15ed8e3e82ba58de7 /cli/tests/integration_tests.rs | |
parent | eaabef30d08b47c9a90c12ec736c7d53f42a1208 (diff) |
Remove emoji from welcome script so it looks better on windows (#9031)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index b42315e1a..31d634274 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -4740,7 +4740,7 @@ fn compile() { .wait_with_output() .unwrap(); assert!(output.status.success()); - assert_eq!(output.stdout, "Welcome to Deno 🦕\n".as_bytes()); + assert_eq!(output.stdout, "Welcome to Deno!\n".as_bytes()); } #[test] |