Skip to content

Commit

Permalink
Auto merge of #10336 - weihanglo:bump-clap, r=ehuss
Browse files Browse the repository at this point in the history
Bump clap to v3.0.13
  • Loading branch information
bors committed Jan 27, 2022
2 parents 1c03475 + 11c5041 commit 0673982
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ toml_edit = { version = "0.13", features = ["serde", "easy"] }
unicode-xid = "0.2.0"
url = "2.2.2"
walkdir = "2.2"
clap = "3.0.5"
clap = "3.0.13"
unicode-width = "0.1.5"
openssl = { version = '0.10.11', optional = true }
im-rc = "15.0.0"
Expand Down
2 changes: 1 addition & 1 deletion tests/testsuite/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1251,7 +1251,7 @@ fn run_multiple_packages() {

cargo().arg("-p").arg("d1").arg("-p").arg("d2")
.with_status(1)
.with_stderr_contains("error: The argument '--package <SPEC>...' was provided more than once, but cannot be used multiple times").run();
.with_stderr_contains("error: The argument '--package [<SPEC>...]' was provided more than once, but cannot be used multiple times").run();

cargo()
.arg("-p")
Expand Down
2 changes: 1 addition & 1 deletion tests/testsuite/rustc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ fn fail_with_multiple_packages() {
.with_status(1)
.with_stderr_contains(
"\
error: The argument '--package <SPEC>...' was provided more than once, \
error: The argument '--package [<SPEC>...]' was provided more than once, \
but cannot be used multiple times
",
)
Expand Down

0 comments on commit 0673982

Please sign in to comment.