Fix add.t Test1549 test failure.

The test was failing on my machine on fresh checkout. It failed because
somehow both new-id and new-uuid verbosity were set during the test, so
TW defaulted to printing out uuid, which did not match the assertion.

Test fixed by explicitly setting verbosity to new-id.
This commit is contained in:
Vladimir Rusinov 2020-01-27 12:47:14 +00:00 committed by Paul Beckingham
parent cad8bec8b6
commit abddb1ea8e

View file

@ -191,7 +191,7 @@ class Test1549(TestCase):
"""
# This command will hang and therefore timeout in 2.4.1.
code, out, err = self.t('add 1e x')
code, out, err = self.t('rc.verbose:new-id add 1e x')
self.assertIn("Created task 1.", out)