Removed debug println from earlier commit.

This commit is contained in:
Anil P 2020-12-02 12:39:29 -06:00
parent 782dacd50c
commit fad16813a3

View File

@ -195,7 +195,6 @@ fn finds_author_user() {
cargo_process("new foo").env("USER", "foo").run();
let toml = paths::root().join("foo/Cargo.toml");
println!("{:?}", toml);
let contents = fs::read_to_string(&toml).unwrap();
assert!(contents.contains(r#"authors = ["foo"]"#));
}
@ -218,9 +217,7 @@ fn author_without_user_or_email() {
#[cargo_test]
fn finds_author_email_only() {
create_empty_gitconfig();
cargo_process("new foo")
.env("EMAIL", "baz")
.run();
cargo_process("new foo").env("EMAIL", "baz").run();
let toml = paths::root().join("foo/Cargo.toml");
println!("{:?}", toml);