diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/integration/repl_tests.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/integration/repl_tests.rs b/tests/integration/repl_tests.rs index cdcab8e18..2049990a3 100644 --- a/tests/integration/repl_tests.rs +++ b/tests/integration/repl_tests.rs @@ -1084,7 +1084,10 @@ fn closed_file_pre_load_does_not_occur() { .new_command() .args_vec(["repl", "-A", "--log-level=debug"]) .with_pty(|console| { - assert_contains!(console.all_output(), "Skipped document preload.",); + assert_contains!( + console.all_output(), + "Skipped workspace walk due to client incapability.", + ); }); } |