summaryrefslogtreecommitdiffstats
path: root/src/components/help/tests.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/help/tests.rs')
-rw-r--r--src/components/help/tests.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/help/tests.rs b/src/components/help/tests.rs
index fa62db1..836cf43 100644
--- a/src/components/help/tests.rs
+++ b/src/components/help/tests.rs
@@ -9,7 +9,9 @@ use crate::{
fn handle_event(help: &mut Help, event: Event) {
let evt = help.read_event(event).unwrap_or(event);
- with_view_state(|context| help.handle_event(evt, &context.state));
+ with_view_state(|context| {
+ let _result = help.handle_event(evt, &context.state);
+ });
}
#[test]