diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 196b4dc..6dbaeec 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -168,4 +168,3 @@ jobs: flags: ${{ steps.vars.outputs.CODECOV_FLAGS }} name: codecov-umbrella fail_ci_if_error: false - diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 39efd70..45c4016 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -51,4 +51,4 @@ doc = false name = "fuzz_side" path = "fuzz_targets/fuzz_side.rs" test = false -doc = false \ No newline at end of file +doc = false diff --git a/fuzz/fuzz_targets/fuzz_side.rs b/fuzz/fuzz_targets/fuzz_side.rs index 8084494..45580ef 100644 --- a/fuzz/fuzz_targets/fuzz_side.rs +++ b/fuzz/fuzz_targets/fuzz_side.rs @@ -4,9 +4,9 @@ extern crate libfuzzer_sys; use diffutilslib::side_diff; +use diffutilslib::params::Params; use std::fs::{self, File}; use std::io::Write; -use diffutilslib::params::Params; fuzz_target!(|x: (Vec, Vec, /* usize, usize */ bool)| { let (original, new, /* width, tabsize, */ expand) = x; @@ -40,4 +40,4 @@ fuzz_target!(|x: (Vec, Vec, /* usize, usize */ bool)| { .unwrap() .write_all(&output_buf) .unwrap(); -}); \ No newline at end of file +});