We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 782dacd commit fad1681Copy full SHA for fad1681
tests/testsuite/new.rs
@@ -195,7 +195,6 @@ fn finds_author_user() {
195
cargo_process("new foo").env("USER", "foo").run();
196
197
let toml = paths::root().join("foo/Cargo.toml");
198
- println!("{:?}", toml);
199
let contents = fs::read_to_string(&toml).unwrap();
200
assert!(contents.contains(r#"authors = ["foo"]"#));
201
}
@@ -218,9 +217,7 @@ fn author_without_user_or_email() {
218
217
#[cargo_test]
219
fn finds_author_email_only() {
220
create_empty_gitconfig();
221
- cargo_process("new foo")
222
- .env("EMAIL", "baz")
223
- .run();
+ cargo_process("new foo").env("EMAIL", "baz").run();
224
225
226
println!("{:?}", toml);
0 commit comments