Skip to content

Commit

Permalink
Fix cargo_command::cargo_subcommand_args test
Browse files Browse the repository at this point in the history
  • Loading branch information
dwijnand committed Nov 18, 2018
1 parent 49f73b9 commit 092f7ba
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/testsuite/cargo_command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,9 @@ fn cargo_subcommand_args() {

cargo_process("foo bar -v --help")
.env("PATH", &path)
.with_stdout(r#"["[CWD]/cargo-foo/target/debug/cargo-foo", "foo", "bar", "-v", "--help"]"#)
.with_stdout(
r#"["[CWD]/cargo-foo/target/debug/cargo-foo[EXE]", "foo", "bar", "-v", "--help"]"#,
)
.run();
}

Expand Down

0 comments on commit 092f7ba

Please sign in to comment.