Skip to content

Commit fad1681

Browse files
committed
Removed debug println from earlier commit.
1 parent 782dacd commit fad1681

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/testsuite/new.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,6 @@ fn finds_author_user() {
195195
cargo_process("new foo").env("USER", "foo").run();
196196

197197
let toml = paths::root().join("foo/Cargo.toml");
198-
println!("{:?}", toml);
199198
let contents = fs::read_to_string(&toml).unwrap();
200199
assert!(contents.contains(r#"authors = ["foo"]"#));
201200
}
@@ -218,9 +217,7 @@ fn author_without_user_or_email() {
218217
#[cargo_test]
219218
fn finds_author_email_only() {
220219
create_empty_gitconfig();
221-
cargo_process("new foo")
222-
.env("EMAIL", "baz")
223-
.run();
220+
cargo_process("new foo").env("EMAIL", "baz").run();
224221

225222
let toml = paths::root().join("foo/Cargo.toml");
226223
println!("{:?}", toml);

0 commit comments

Comments
 (0)