summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAram Drevekenin <aram@poor.dev>2023-02-26 21:03:49 +0100
committerAram Drevekenin <aram@poor.dev>2023-02-26 21:03:49 +0100
commit42760bde0051517f9f82769a0d7cbda3c1510afc (patch)
treed039e13654fcae533dbeed8754315de918a49303
parentdbc3cb5015d400e33e48a6dfb776bcfc205b68df (diff)
fix(tests): add missing parameter to cli actionnew-tab-layout-dir
-rw-r--r--zellij-server/src/unit/screen_tests.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/zellij-server/src/unit/screen_tests.rs b/zellij-server/src/unit/screen_tests.rs
index 616989d18..bf01fded5 100644
--- a/zellij-server/src/unit/screen_tests.rs
+++ b/zellij-server/src/unit/screen_tests.rs
@@ -2370,6 +2370,7 @@ pub fn send_cli_new_tab_action_default_params() {
let new_tab_action = CliAction::NewTab {
name: None,
layout: None,
+ layout_dir: None,
cwd: None,
};
send_cli_action_to_server(
@@ -2414,6 +2415,7 @@ pub fn send_cli_new_tab_action_with_name_and_layout() {
"{}/src/unit/fixtures/layout-with-three-panes.kdl",
env!("CARGO_MANIFEST_DIR")
))),
+ layout_dir: None,
cwd: None,
};
send_cli_action_to_server(