Skip to content

Commit

Permalink
Fix CLI bug
Browse files Browse the repository at this point in the history
  • Loading branch information
langston-barrett committed Mar 17, 2023
1 parent ca1964a commit 0f50024
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/treereduce/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -254,11 +254,11 @@ fn check(args: &Args) -> Result<CmdCheck> {
Some(r) => Some(Regex::new(r).context("Invalid interesting stderr regex")?),
None => None,
};
let un_stdout_regex = match &args.interesting_stdout {
let un_stdout_regex = match &args.uninteresting_stdout {
Some(r) => Some(Regex::new(r).context("Invalid uninteresting stdout regex")?),
None => None,
};
let un_stderr_regex = match &args.interesting_stderr {
let un_stderr_regex = match &args.uninteresting_stderr {
Some(r) => Some(Regex::new(r).context("Invalid uninteresting stderr regex")?),
None => None,
};
Expand Down

0 comments on commit 0f50024

Please sign in to comment.