1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

Fix crash in test suite

This commit is contained in:
Darshit Shah 2014-06-22 01:06:08 +05:30
parent 8b83306d54
commit 65fc59aefa
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2014-06-22 Darshit Shah <darnir@gmail.com>
* (conf.files_crawled): diff is a set object and needs explicit str
conversion.
2014-03-13 Zihang Chen <chsc4698@gmail.com>
* base_test.py:

View File

@ -14,5 +14,5 @@ class FilesCrawled:
diff = headers.symmetric_difference(remaining)
if diff:
print_red(diff)
print_red (str(diff))
raise TestFailed('Not all files were crawled correctly.')