From e044b6e2288b07176cd162670a3b85a5249ad473 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz <henrik@levkowetz.com> Date: Fri, 15 Jun 2007 12:02:05 +0000 Subject: [PATCH] Fixed broken report of untested URLs in tests.py - Legacy-Id: 401 --- ietf/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/tests.py b/ietf/tests.py index 33a91c55c..ae905bd88 100644 --- a/ietf/tests.py +++ b/ietf/tests.py @@ -139,7 +139,7 @@ class UrlTestCase(TestCase): #self.assertEqual(set(patterns), set(covered), "Not all the #application URLs has test cases. The missing are: %s" % (list(set(patterns) - set(covered)))) if not set(self.patterns) == set(covered): - print "Not all the application URLs has test cases. The missing are: \n %s" % ("\n ".join(list(set(patterns) - set(covered)))) + print "Not all the application URLs has test cases. The missing are: \n %s" % ("\n ".join(list(set(self.patterns) - set(covered)))) else: print "All the application URL patterns seem to have test cases." #print "Not all the application URLs has test cases."