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

Commit c7a19f6

Browse files
committed
Auto merge of #1728 - ehuss:update-cargo, r=Xanewok
Update cargo The wording of an error message changed slightly, so a test needs to be updated.
2 parents 32c0fe0 + 93a9455 commit c7a19f6

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

Cargo.lock

Lines changed: 6 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ rls-vfs = "0.8"
3030
rls-ipc = { version = "0.1.0", path = "rls-ipc", optional = true }
3131

3232
anyhow = "1.0.26"
33-
cargo = { git = "https://github.com/rust-lang/cargo", rev = "58a961314437258065e23cb6316dfc121d96fb71" }
34-
cargo-util = { git = "https://github.com/rust-lang/cargo", rev = "58a961314437258065e23cb6316dfc121d96fb71" }
33+
cargo = { git = "https://github.com/rust-lang/cargo", rev = "8dd533662007374412f460b4e442d3f8c193bff9" }
34+
cargo-util = { git = "https://github.com/rust-lang/cargo", rev = "8dd533662007374412f460b4e442d3f8c193bff9" }
3535
cargo_metadata = "0.8"
3636
clippy_lints = { git = "https://github.com/rust-lang/rust-clippy", rev = "7ea7cd165ad6705603852771bf82cc2fd6560db5", optional = true }
3737
env_logger = "0.7"

tests/client.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -813,7 +813,7 @@ fn client_invalid_member_toml_manifest() {
813813

814814
assert_eq!(diag.diagnostics.len(), 1);
815815
assert_eq!(diag.diagnostics[0].severity, Some(DiagnosticSeverity::Error));
816-
assert!(diag.diagnostics[0].message.contains("failed to read"));
816+
assert!(diag.diagnostics[0].message.contains("failed to load manifest"));
817817
}
818818

819819
#[test]

0 commit comments

Comments
 (0)