diff options
| author | Ivan Molodetskikh <yalterz@gmail.com> | 2023-10-30 14:21:07 +0400 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2023-10-30 14:21:07 +0400 |
| commit | bc64452bab931dca44a114bd90f9441b8de0c6cd (patch) | |
| tree | eee83993133cdd327f06ca4cccfee7370c2a739b | |
| parent | 155a239fcc2ceb079006da800ba2c9a999fdb06b (diff) | |
| download | niri-bc64452bab931dca44a114bd90f9441b8de0c6cd.tar.gz niri-bc64452bab931dca44a114bd90f9441b8de0c6cd.tar.bz2 niri-bc64452bab931dca44a114bd90f9441b8de0c6cd.zip | |
Replace test imports with super::*
| -rw-r--r-- | src/input.rs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/input.rs b/src/input.rs index 10f92e32..11ac4dc5 100644 --- a/src/input.rs +++ b/src/input.rs @@ -945,11 +945,7 @@ fn should_activate_monitors<I: InputBackend>(event: &InputEvent<I>) -> bool { #[cfg(test)] mod tests { - use std::collections::HashSet; - - use smithay::input::keyboard::{FilterResult, Keysym, ModifiersState}; - - use super::{should_intercept_key, CompositorMod}; + use super::*; use crate::config::{Action, Bind, Binds, Key, Modifiers}; #[test] |
