From a0edcccecfcda94195ca9def3ce772b62b4b10a4 Mon Sep 17 00:00:00 2001 From: ZyX Date: Fri, 16 Jan 2015 23:01:51 +0300 Subject: [PATCH] Increase sleeping time It appears that just one second is not enough for travis --- tests/test_in_vterm/test_tmux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_in_vterm/test_tmux.py b/tests/test_in_vterm/test_tmux.py index 62f9487f..72fa1f94 100755 --- a/tests/test_in_vterm/test_tmux.py +++ b/tests/test_in_vterm/test_tmux.py @@ -73,7 +73,7 @@ def main(): }, ) p.start() - sleep(1) + sleep(10) last_line = [] for col in range(cols): last_line.append(p[rows - 1, col])