Unit Tests

- Corrected mistake made earlier when assuming the first test was a 'control'.
  It was not.
This commit is contained in:
Paul Beckingham 2014-07-03 17:37:30 -04:00
parent c8f2b5a858
commit 7a37317526

View file

@ -68,7 +68,7 @@ class TestBug1267(BaseTestBug1267):
args = ["rc:bug.rc", "ls"] args = ["rc:bug.rc", "ls"]
code, out, err = self.callTaskSuccess(args, merge_streams=False) code, out, err = self.callTaskSuccess(args, merge_streams=False)
self.assertIn(project, out) self.assertNotIn(project, out)
def test_add_task_no_project_with_default_rcfile(self): def test_add_task_no_project_with_default_rcfile(self):
"""Add a task without a project writing to rc file """Add a task without a project writing to rc file