Skip to content

Commit

Permalink
test: missing assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes committed Oct 27, 2023
1 parent f8150df commit 9e8a9f5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -811,6 +811,7 @@ pub mod fuzzing {
fn fuzz_check_false(s in ".{16}[0-9a-fA-F]+") {
let s = s.as_bytes();
prop_assert!(crate::check(s).is_err());
prop_assert!(crate::const_check(s).is_err());
prop_assert!(!crate::check_raw(s));
prop_assert!(!crate::const_check_raw(s));
}
Expand Down

0 comments on commit 9e8a9f5

Please sign in to comment.