Skip to content

Commit

Permalink
support::git::Repository doesn't support .cargo (yet?)
Browse files Browse the repository at this point in the history
  • Loading branch information
dwijnand committed Sep 6, 2018
1 parent 4415c72 commit 7bda434
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/testsuite/package.rs
Original file line number Diff line number Diff line change
Expand Up @@ -506,8 +506,9 @@ fn no_duplicates_from_modified_tracked_files() {
.unwrap()
.write_all(br#"fn main() { println!("A change!"); }"#)
.unwrap();
p.cargo("build").run();
p.cargo("package --list --allow-dirty")
cargo_process("build").cwd(p.root()).run();
cargo_process("package --list --allow-dirty")
.cwd(p.root())
.with_stdout(
"\
Cargo.toml
Expand Down

0 comments on commit 7bda434

Please sign in to comment.