mirror of
https://github.com/microsoft/onefuzz.git
synced 2025-06-17 20:38:06 +00:00
address latest clippy warnings (#679)
This commit is contained in:
@ -260,7 +260,7 @@ mod tests {
|
||||
let runtime_dir = tempfile::tempdir().unwrap();
|
||||
|
||||
let supervisor_exe = if let Ok(x) = env::var("ONEFUZZ_TEST_AFL_LINUX_FUZZER") {
|
||||
x.into()
|
||||
x
|
||||
} else {
|
||||
warn!("Unable to test AFL integration");
|
||||
return;
|
||||
|
@ -100,9 +100,7 @@ fn url_input_name(url: &Url) -> String {
|
||||
}
|
||||
|
||||
fn fixture() -> InputPoller<Msg> {
|
||||
let task = InputPoller::new();
|
||||
|
||||
task
|
||||
InputPoller::new()
|
||||
}
|
||||
|
||||
fn url_fixture(msg: Msg) -> Url {
|
||||
|
Reference in New Issue
Block a user