diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-12-02 14:59:04 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-02 14:59:04 -0500 |
commit | 868068c8474040cad4b0742e54809580d00c36f6 (patch) | |
tree | cd5a790c29d04990be701a2ef78bb728cb2375bb | |
parent | 83bc8c473d1accc77a588dfe202612bd14673bd0 (diff) |
chore(windows): fix flaky pty_complete_imports (#16905)
-rw-r--r-- | cli/tests/repl_tests.rs | 3 |
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", ); }); |