Skip to content

Commit

Permalink
Fixes before release part 3.
Browse files Browse the repository at this point in the history
  • Loading branch information
finnbear committed Sep 24, 2024
1 parent 03c9d2a commit 630a83a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuzz/fuzz_targets/fuzz.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ fuzz_target!(|data: &[u8]| {

if let Ok(text) = std::str::from_utf8(input) {
let _ = rustrict::width_str(text);
let _ = rustrict::width_str_max_unbroken(text);
let _ = rustrict::width_str_max_unbroken(text, rustrict::WordBreak::BreakAll);
let _ = rustrict::trim_to_width(text, 10);
let _ = rustrict::censor_and_analyze_pii(text);

Expand Down

0 comments on commit 630a83a

Please sign in to comment.