From 868068c8474040cad4b0742e54809580d00c36f6 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Fri, 2 Dec 2022 14:59:04 -0500 Subject: [PATCH] chore(windows): fix flaky pty_complete_imports (#16905) --- cli/tests/repl_tests.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cli/tests/repl_tests.rs b/cli/tests/repl_tests.rs index 281ae07465..136148d9f4 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", ); });