summaryrefslogtreecommitdiffstats
path: root/zellij-server/src/pty.rs
diff options
context:
space:
mode:
authorKunal Mohan <kunalmohan99@gmail.com>2021-07-04 15:20:47 +0530
committerKunal Mohan <kunalmohan99@gmail.com>2021-07-06 21:32:43 +0530
commit82288c6a3d4a1347016fd7a5bd83fdbcbe9fcc1d (patch)
treeee6bdf3b0894662b1816097f6fee173b4eac1af2 /zellij-server/src/pty.rs
parent79c30e9d59e69959317ab046c57b8a81f57af1ac (diff)
Remove test feature and hacks
Diffstat (limited to 'zellij-server/src/pty.rs')
-rw-r--r--zellij-server/src/pty.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/zellij-server/src/pty.rs b/zellij-server/src/pty.rs
index cc23e77ea..e7884f356 100644
--- a/zellij-server/src/pty.rs
+++ b/zellij-server/src/pty.rs
@@ -198,7 +198,6 @@ fn stream_terminal_bytes(
}
async_send_to_screen(senders.clone(), ScreenInstruction::Render).await;
- #[cfg(not(any(feature = "test", test)))]
// this is a little hacky, and is because the tests end the file as soon as
// we read everything, rather than hanging until there is new data
// a better solution would be to fix the test fakes, but this will do for now