Update summary.t

This commit is contained in:
Paul Beckingham 2019-02-07 08:16:06 -05:00
parent 2e72ae5068
commit b6da775958

View file

@ -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)