summaryrefslogtreecommitdiffstats
path: root/zellij-server/src/unit
diff options
context:
space:
mode:
Diffstat (limited to 'zellij-server/src/unit')
-rw-r--r--zellij-server/src/unit/screen_tests.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/zellij-server/src/unit/screen_tests.rs b/zellij-server/src/unit/screen_tests.rs
index 516c86309..adc7b0441 100644
--- a/zellij-server/src/unit/screen_tests.rs
+++ b/zellij-server/src/unit/screen_tests.rs
@@ -1969,6 +1969,7 @@ pub fn send_cli_new_pane_action_with_default_parameters() {
let cli_new_pane_action = CliAction::NewPane {
direction: None,
command: vec![],
+ plugin: None,
cwd: None,
floating: false,
name: None,
@@ -2009,6 +2010,7 @@ pub fn send_cli_new_pane_action_with_split_direction() {
let cli_new_pane_action = CliAction::NewPane {
direction: Some(Direction::Right),
command: vec![],
+ plugin: None,
cwd: None,
floating: false,
name: None,
@@ -2049,6 +2051,7 @@ pub fn send_cli_new_pane_action_with_command_and_cwd() {
let cli_new_pane_action = CliAction::NewPane {
direction: Some(Direction::Right),
command: vec!["htop".into()],
+ plugin: None,
cwd: Some("/some/folder".into()),
floating: false,
name: None,