diff options
Diffstat (limited to 'src/ui')
| -rw-r--r-- | src/ui/hotkey_overlay.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/hotkey_overlay.rs b/src/ui/hotkey_overlay.rs index 783b71ef..67997fc8 100644 --- a/src/ui/hotkey_overlay.rs +++ b/src/ui/hotkey_overlay.rs @@ -607,7 +607,7 @@ mod tests { #[track_caller] fn check(config: &str, action: Action) -> String { - let config = Config::parse("test.kdl", config).unwrap(); + let config = Config::parse_mem(config).unwrap(); if let Some((key, title)) = format_bind(&config.binds.0, &action) { let key = key.map(|key| key_name(false, ModKey::Super, &key)); let key = key.as_deref().unwrap_or("(not bound)"); |
