diff options
-rw-r--r-- | cli/tests/integration/lsp_tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/integration/lsp_tests.rs b/cli/tests/integration/lsp_tests.rs index 80aa64f54..762d8bb94 100644 --- a/cli/tests/integration/lsp_tests.rs +++ b/cli/tests/integration/lsp_tests.rs @@ -2935,7 +2935,7 @@ fn lsp_diagnostics_refresh_dependents() { if queue_len - i <= 3 { assert!(maybe_params.is_some()); let params = maybe_params.unwrap(); - assert!(params.diagnostics.is_empty()); + assert_eq!(params.diagnostics, Vec::with_capacity(0)); } } assert!(client.queue_is_empty()); |