Skip to content

Commit

Permalink
run the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
morgante committed Aug 6, 2024
1 parent 421d504 commit 3ce4e85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/cli_bin/tests/apply.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1543,7 +1543,7 @@ fn filtered_apply() -> Result<()> {

let stdout = String::from_utf8(output.stdout)?;
println!("stdout: {:?}", stdout);
assert!(stdout.contains("2 matches"));
assert!(stdout.contains("3 matches"));

let content = fs_err::read_to_string(dir.join("file.js"))?;
assert_snapshot!(content);
Expand Down Expand Up @@ -2077,7 +2077,7 @@ fn overrides_limit() -> Result<()> {
"Command didn't finish successfully"
);

assert!(stdout.contains("found 2 matches"));
assert!(stdout.contains("2 files"));

Ok(())
}
Expand Down

0 comments on commit 3ce4e85

Please sign in to comment.