From f84677fbefe5da91e7b15e486fffe7371845c2e0 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 12 Jul 2015 23:02:28 -0400 Subject: [PATCH] Test: Removed diagnostic output from test --- test/feature.891.t | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/feature.891.t b/test/feature.891.t index ccc4fdcad..e0a57f3b6 100755 --- a/test/feature.891.t +++ b/test/feature.891.t @@ -47,13 +47,12 @@ class TestFeature891(TestCase): def test_uuid_filter(self): for i in range(35,7,-1): - self.tap("UUID %s" % self.uuid[0:i]) code, out, err = self.t((self.uuid[0:i], "list")) self.assertIn("one", out) self.assertNotIn("two", out) # TODO This should fail because a 7-character UUID is not a UUID, but - # instead it blindly does nothing, and succeeds. + # instead it blindly does nothing, and succeeds. Voodoo. #code, out, err = self.t((self.uuid[0:6], "list")) if __name__ == "__main__":