Skip to content

Commit 36df70d

Browse files
committed
Make it possible to capture the complte agenda diff
- Legacy-Id: 698
1 parent 188a562 commit 36df70d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

ietf/tests.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -361,9 +361,9 @@ def doUrlsTest(self, lst):
361361
note("Failed diff: %s" % (url))
362362
else:
363363
note("Diff: %s" % (url))
364-
print "\n".join(diff.split("\n")[:100])
365-
if len(diff.split("\n")) > 100:
366-
print "... (skipping %s lines of diff)" % (len(difflist)-100)
364+
print "\n".join(diff.split("\n")[:120])
365+
if len(diff.split("\n")) > 120:
366+
print "... (skipping %s lines of diff)" % (len(difflist)-120)
367367
else:
368368
note("OK cmp %s" % (url))
369369

0 commit comments

Comments
 (0)