From c1ff1f6572ffb84809f17686370ab9bee4467c9c Mon Sep 17 00:00:00 2001 From: Nylme Date: Tue, 19 Nov 2024 22:29:26 +1100 Subject: [PATCH] parsing_typeable_commands: fixed test --- helix-term/src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-term/src/config.rs b/helix-term/src/config.rs index f9d6966d6..abc678448 100644 --- a/helix-term/src/config.rs +++ b/helix-term/src/config.rs @@ -225,7 +225,7 @@ mod tests { o = { label = "Edit Config", command = ":open ~/.config" } c = ":buffer-close" h = ["vsplit", "normal_mode", "swap_view_left"] - j = {command = ["hsplit", "normal_mode", {}], label = "split down"} + j = {command = ["hsplit", "normal_mode", "swap_view_down"], label = "split down"} "#; let config = Config::load_test(sample_keymaps);