From abddb1ea8e1d15d63f4784ff33eefe80994715ca Mon Sep 17 00:00:00 2001 From: Vladimir Rusinov Date: Mon, 27 Jan 2020 12:47:14 +0000 Subject: [PATCH] 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. --- test/add.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/add.t b/test/add.t index 6e2c934db..15c851c76 100755 --- a/test/add.t +++ b/test/add.t @@ -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)