Skip to content

Commit

Permalink
test(config): Improve failure output
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Jan 26, 2024
1 parent 7e85211 commit a1525bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/testsuite/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ f1 = 1

// It should NOT have warned for the symlink.
let output = read_output(config);
assert_eq!(output, "");
assert_match("", &output);
}

#[cargo_test]
Expand All @@ -301,7 +301,7 @@ f1 = 1

// It should NOT have warned for the symlink.
let output = read_output(config);
assert_eq!(output, "");
assert_match("", &output);
}

#[cargo_test]
Expand Down

0 comments on commit a1525bc

Please sign in to comment.