summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2022-12-02 14:59:04 -0500
committerGitHub <noreply@github.com>2022-12-02 14:59:04 -0500
commit868068c8474040cad4b0742e54809580d00c36f6 (patch)
treecd5a790c29d04990be701a2ef78bb728cb2375bb
parent83bc8c473d1accc77a588dfe202612bd14673bd0 (diff)
chore(windows): fix flaky pty_complete_imports (#16905)
-rw-r--r--cli/tests/repl_tests.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/cli/tests/repl_tests.rs b/cli/tests/repl_tests.rs
index 281ae0746..136148d9f 100644
--- a/cli/tests/repl_tests.rs
+++ b/cli/tests/repl_tests.rs
@@ -173,9 +173,10 @@ mod repl {
assert_contains!(output, "Hello World");
assert_contains!(
output,
- // on windows, could contain either (it's flaky)
+ // on windows, could any (it's flaky)
"\ntesting output",
"testing output\u{1b}",
+ "\r\n\u{1b}[?25htesting output",
);
});