summaryrefslogtreecommitdiffstats
path: root/below/view/src/controllers/test.rs
diff options
context:
space:
mode:
Diffstat (limited to 'below/view/src/controllers/test.rs')
-rw-r--r--below/view/src/controllers/test.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/below/view/src/controllers/test.rs b/below/view/src/controllers/test.rs
index 6f108158..f1c7374f 100644
--- a/below/view/src/controllers/test.rs
+++ b/below/view/src/controllers/test.rs
@@ -49,7 +49,6 @@ filter = 'u'
clear_filter = 'v'
next_page = 'Y'
prev_page = 'y'
-url = 'n'
";
let cmdrc_val = std::str::from_utf8(cmdrc_str)
.expect("Failed to parse [u8] to str")
@@ -149,10 +148,6 @@ url = 'n'
event_controllers.get(&Event::Char('y')),
Some(&Controllers::PrevPage)
);
- assert_eq!(
- event_controllers.get(&Event::Char('n')),
- Some(&Controllers::Url)
- );
}
#[test]