summaryrefslogtreecommitdiff
path: root/tests/integration/repl_tests.rs
diff options
context:
space:
mode:
authorNayeem Rahman <nayeemrmn99@gmail.com>2024-05-29 21:31:09 +0100
committerGitHub <noreply@github.com>2024-05-29 21:31:09 +0100
commit3d3722507e1964cba66161e3e2e7b538bc23f29c (patch)
tree29cf6f83f1ee97a2a9477c45d1572ba9078104f4 /tests/integration/repl_tests.rs
parent3c3076a84ce84f7f9b5db5f476db8ee878eb603b (diff)
perf(repl): don't walk workspace in repl language server (#24037)
Diffstat (limited to 'tests/integration/repl_tests.rs')
-rw-r--r--tests/integration/repl_tests.rs5
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.",
+ );
});
}