Skip to content

Commit 2e6fa14

Browse files
committed
Tweaked the testurl diff output text.
- Legacy-Id: 6534
1 parent bf75cd1 commit 2e6fa14

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ietf/utils/test_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,11 +234,11 @@ def doDiff(self, tuple, response):
234234
diff_list = list(unified_diff(list0, list1, master or refurl, url, "", "", 0, lineterm=""))
235235
if len(diff_list):
236236
if len(diff_list) > 10:
237-
print "The diff is too long to show in its entirety. Here are the first 10 lines:\n"
237+
print "\n Differences found. The list is too long to show in its entirety.\n Here are the first 10 lines:\n"
238238
print "\n".join(diff_list[:16])
239239
print "..."
240240
else:
241-
print " Differences found:"
241+
print "\n Differences found:"
242242
print "\n".join(unified_diff(list0, list1, master or refurl, url, "", "", 0, lineterm=""))
243243
return False
244244

0 commit comments

Comments
 (0)