summaryrefslogtreecommitdiff
path: root/cli/tests/integration/repl_tests.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/integration/repl_tests.rs')
-rw-r--r--cli/tests/integration/repl_tests.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/integration/repl_tests.rs b/cli/tests/integration/repl_tests.rs
index 9f37679ef..5335cf964 100644
--- a/cli/tests/integration/repl_tests.rs
+++ b/cli/tests/integration/repl_tests.rs
@@ -242,7 +242,7 @@ fn pty_internal_repl() {
fn pty_emoji() {
// windows was having issues displaying this
util::with_pty(&["repl"], |mut console| {
- console.write_line(r#"console.log('\u{1F995}');"#);
+ console.write_line(r"console.log('\u{1F995}');");
console.expect("🦕");
});
}