From 02f4b1a9bacf7e1dea9fc0360803ff5fb23a0b70 Mon Sep 17 00:00:00 2001 From: Maksym Naboka Date: Mon, 27 Mar 2017 13:59:49 -0700 Subject: [PATCH] test_task: fix test_log_two_tasks due to log changes (#950) --- cli/tests/integrations/test_task.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/tests/integrations/test_task.py b/cli/tests/integrations/test_task.py index 4b8b5ad..359c44c 100644 --- a/cli/tests/integrations/test_task.py +++ b/cli/tests/integrations/test_task.py @@ -184,7 +184,7 @@ def test_log_two_tasks(): assert stderr == b'' lines = stdout.decode('utf-8').split('\n') - assert len(lines) == 23 + assert len(lines) == 19 @pytest.mark.skipif(sys.platform == 'win32',