From 7fbd4f8a441129060bc3ac3f72d391e4049fc157 Mon Sep 17 00:00:00 2001 From: Ary Borenszweig Date: Thu, 22 Aug 2024 13:06:59 -0300 Subject: [PATCH] More clippy --- tooling/lsp/src/requests/completion/tests.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tooling/lsp/src/requests/completion/tests.rs b/tooling/lsp/src/requests/completion/tests.rs index 55b68bee8eb..07ac8885bd5 100644 --- a/tooling/lsp/src/requests/completion/tests.rs +++ b/tooling/lsp/src/requests/completion/tests.rs @@ -1674,7 +1674,7 @@ mod completion_tests { Some("fn()".to_string()), )], ) - .await + .await; } #[test] @@ -1696,7 +1696,7 @@ mod completion_tests { Some("fn()".to_string()), )], ) - .await + .await; } #[test] @@ -1718,7 +1718,7 @@ mod completion_tests { Some("fn()".to_string()), )], ) - .await + .await; } #[test] @@ -1740,7 +1740,7 @@ mod completion_tests { Some("fn()".to_string()), )], ) - .await + .await; } #[test] @@ -1764,7 +1764,7 @@ mod completion_tests { Some("fn(self)".to_string()), )], ) - .await + .await; } #[test] @@ -1788,6 +1788,6 @@ mod completion_tests { Some("fn(self)".to_string()), )], ) - .await + .await; } }