Skip to content

Commit

Permalink
ci: fix bench tests
Browse files Browse the repository at this point in the history
  • Loading branch information
amrbashir committed Jun 27, 2022
1 parent d7c9097 commit 6f20268
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
1 change: 0 additions & 1 deletion bench/tests/src/cpu_intensive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ fn main() -> wry::Result<()> {
..
} => *control_flow = ControlFlow::Exit,
_ => {
let _ = webview.resize();
}
}
});
Expand Down
1 change: 0 additions & 1 deletion bench/tests/src/custom_protocol.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ fn main() -> wry::Result<()> {
..
} => *control_flow = ControlFlow::Exit,
_ => {
let _ = webview.resize();
}
}
});
Expand Down
4 changes: 1 addition & 3 deletions bench/tests/src/hello_world.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,7 @@ fn main() -> wry::Result<()> {
event: WindowEvent::CloseRequested,
..
} => *control_flow = ControlFlow::Exit,
_ => {
let _ = webview.resize();
}
_ => {}
}
});
}

0 comments on commit 6f20268

Please sign in to comment.