summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAram Drevekenin <aram@poor.dev>2024-04-12 14:51:26 +0200
committerAram Drevekenin <aram@poor.dev>2024-04-12 14:51:26 +0200
commit3ab00379e5c22d631a29391cf3c50d799e66c935 (patch)
treea3993ee2833b7b5ac952a35617c7037132571b71
parent1d2efdf0e499eb8114d3141cc462f2cada1d741f (diff)
-rw-r--r--zellij-server/src/unit/os_input_output_tests.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/zellij-server/src/unit/os_input_output_tests.rs b/zellij-server/src/unit/os_input_output_tests.rs
index 7e6510835..31892525d 100644
--- a/zellij-server/src/unit/os_input_output_tests.rs
+++ b/zellij-server/src/unit/os_input_output_tests.rs
@@ -36,7 +36,7 @@ fn get_cwd() {
termios::tcgetattr(test_terminal.slave()).expect("Could not configure the termios");
let server = ServerOsInputOutput {
- orig_termios: Arc::new(Mutex::new(test_termios)),
+ orig_termios: Arc::new(Mutex::new(Some(test_termios))),
client_senders: Arc::default(),
terminal_id_to_raw_fd: Arc::default(),
cached_resizes: Arc::default(),