From b8ecc83a54fd5d7955bf1ab4fb82fe18dcb52283 Mon Sep 17 00:00:00 2001 From: Dhruv Manilawala Date: Thu, 4 Dec 2025 16:20:37 +0530 Subject: [PATCH] Fix clippy errors on `main` (#21788) https://github.com/astral-sh/ruff/actions/runs/19922070773/job/57112827024#step:5:62 --- crates/ty_server/tests/e2e/code_actions.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ty_server/tests/e2e/code_actions.rs b/crates/ty_server/tests/e2e/code_actions.rs index ba4e78f744..d60d9ad302 100644 --- a/crates/ty_server/tests/e2e/code_actions.rs +++ b/crates/ty_server/tests/e2e/code_actions.rs @@ -330,7 +330,7 @@ ab: "foobar" .build() .wait_until_workspaces_are_initialized(); - server.open_text_document(foo, &foo_content, 1); + server.open_text_document(foo, foo_content, 1); // Wait for diagnostics to be computed. let diagnostics = server.document_diagnostic_request(foo, None);