From 3df512b86889fa6a414368037f04ecd639804e35 Mon Sep 17 00:00:00 2001 From: Kevin Klues Date: Mon, 10 Jul 2017 21:38:37 -0700 Subject: [PATCH] Updated line count in 'test_ls_long' for '*.logrotate.state' files. These files used to be present when running this test, but now they are not. I wasn't able to find the commit that changed things so that these files don't appear anymore, but this test is now consistently failing since they are not present. This commit reduces the number of lines expected in the output since these files are no longer present. --- 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 3437a55..bd880ee 100644 --- a/cli/tests/integrations/test_task.py +++ b/cli/tests/integrations/test_task.py @@ -287,7 +287,7 @@ def test_ls_multiple_tasks(): def test_ls_long(): - assert_lines(['dcos', 'task', 'ls', '--long', 'test-app1'], 7) + assert_lines(['dcos', 'task', 'ls', '--long', 'test-app1'], 5) def test_ls_path():