Fix cargo_command::cargo_subcommand_args test

This commit is contained in:
Dale Wijnand 2018-11-18 14:44:16 +00:00
parent 49f73b9c4e
commit 092f7baea3
No known key found for this signature in database
GPG Key ID: 4F256E3D151DF5EF

View File

@ -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();
}