Skip to content

Commit

Permalink
clippy: Fix redundant_pattern_matching warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys committed Oct 13, 2023
1 parent 3c97663 commit 05f4215
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion z3/tests/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1221,7 +1221,7 @@ fn test_tactic_fail() {

let tactic = Tactic::new(&ctx, "fail");
let apply_results = tactic.apply(&goal, Some(&params));
assert!(matches!(apply_results, Err(_)));
assert!(apply_results.is_err());
}

#[test]
Expand Down

0 comments on commit 05f4215

Please sign in to comment.