Skip to content
This repository has been archived by the owner on Dec 29, 2022. It is now read-only.

Commit

Permalink
fix tests including dead_code warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
TaKO8Ki committed Jun 19, 2022
1 parent 7241c6c commit 27f4044
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ fn client_test_infer_bin() {
let diag = rls.wait_for_diagnostics();

assert!(diag.uri.as_str().ends_with("src/main.rs"));
assert!(diag.diagnostics[0].message.contains("struct is never constructed: `UnusedBin`"));
assert!(diag.diagnostics[0].message.contains("struct `UnusedBin` is never constructed"));
}

#[test]
Expand All @@ -59,7 +59,7 @@ fn client_test_infer_lib() {
let diag = rls.wait_for_diagnostics();

assert!(diag.uri.as_str().ends_with("src/lib.rs"));
assert!(diag.diagnostics[0].message.contains("struct is never constructed: `UnusedLib`"));
assert!(diag.diagnostics[0].message.contains("struct `UnusedLib` is never constructed"));
}

#[test]
Expand All @@ -74,7 +74,7 @@ fn client_test_infer_custom_bin() {
let diag = rls.wait_for_diagnostics();

assert!(diag.uri.as_str().ends_with("src/custom_bin.rs"));
assert!(diag.diagnostics[0].message.contains("struct is never constructed: `UnusedCustomBin`"));
assert!(diag.diagnostics[0].message.contains("struct `UnusedCustomBin` is never constructed"));
}

/// Test includes window/progress regression testing
Expand Down Expand Up @@ -1961,7 +1961,7 @@ fn client_infer_lib() {
assert!(diag.uri.as_str().ends_with("src/lib.rs"));
assert_eq!(diag.diagnostics.len(), 1);
assert_eq!(diag.diagnostics[0].severity, Some(DiagnosticSeverity::Warning));
assert!(diag.diagnostics[0].message.contains("struct is never constructed: `UnusedLib`"));
assert!(diag.diagnostics[0].message.contains("struct `UnusedLib` is never constructed"));
}

#[test]
Expand Down

0 comments on commit 27f4044

Please sign in to comment.