From 66c6128b664453a385aae248c54bac0c9ea6b653 Mon Sep 17 00:00:00 2001 From: ZyX Date: Sat, 7 Feb 2015 11:14:09 +0300 Subject: [PATCH] Wait less in vterm tmux tests --- tests/test_in_vterm/test_tmux.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_in_vterm/test_tmux.py b/tests/test_in_vterm/test_tmux.py index c8f79547..2562939d 100755 --- a/tests/test_in_vterm/test_tmux.py +++ b/tests/test_in_vterm/test_tmux.py @@ -42,7 +42,7 @@ def test_expected_result(p, expected_result, cols, rows): return True attempts -= 1 print('Actual result does not match expected. Attempts left: {0}.'.format(attempts)) - sleep(10) + sleep(2) print('Result:') shesc_result = ''.join(( '{0}{1}\x1b[m'.format(cell_properties_key_to_shell_escape(key), text) @@ -157,7 +157,7 @@ def main(): }, ) p.start() - sleep(10) + sleep(2) expected_result_new = ( (((0, 0, 0), (243, 243, 243), 1, 0, 0), ' 0 '), (((243, 243, 243), (11, 11, 11), 0, 0, 0), ' '),