From b6da775958d5c176e4a07cf02a3e511fafaf6e4e Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Thu, 7 Feb 2019 08:16:06 -0500 Subject: [PATCH] Update summary.t --- test/summary.t | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/test/summary.t b/test/summary.t index 8f4728d3e..7ed9cc95a 100755 --- a/test/summary.t +++ b/test/summary.t @@ -73,11 +73,9 @@ class TestBug1904(TestCase): self.t("add pro:a.b test2") def validate_order(self, out): - order = ( - "a-b", - "a", - " b", - ) + order = ("a-b", + "a", + " b") lines = out.splitlines(True) # position where project names start on the lines list @@ -95,9 +93,7 @@ class TestBug1904(TestCase): def test_project_eval(self): """1904: verify correct order under summary command""" self.add_tasks() - code, out, err = self.t("summary") - self.validate_order(out)