Skip to content

Commit e044b6e

Browse files
committed
Fixed broken report of untested URLs in tests.py
- Legacy-Id: 401
1 parent 6a2c3ab commit e044b6e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def testCoverage(self):
139139
#self.assertEqual(set(patterns), set(covered), "Not all the
140140
#application URLs has test cases. The missing are: %s" % (list(set(patterns) - set(covered))))
141141
if not set(self.patterns) == set(covered):
142-
print "Not all the application URLs has test cases. The missing are: \n %s" % ("\n ".join(list(set(patterns) - set(covered))))
142+
print "Not all the application URLs has test cases. The missing are: \n %s" % ("\n ".join(list(set(self.patterns) - set(covered))))
143143
else:
144144
print "All the application URL patterns seem to have test cases."
145145
#print "Not all the application URLs has test cases."

0 commit comments

Comments
 (0)