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:
parent
8b83306d54
commit
65fc59aefa
@ -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>
|
2014-03-13 Zihang Chen <chsc4698@gmail.com>
|
||||||
|
|
||||||
* base_test.py:
|
* base_test.py:
|
||||||
|
@ -14,5 +14,5 @@ class FilesCrawled:
|
|||||||
diff = headers.symmetric_difference(remaining)
|
diff = headers.symmetric_difference(remaining)
|
||||||
|
|
||||||
if diff:
|
if diff:
|
||||||
print_red(diff)
|
print_red (str(diff))
|
||||||
raise TestFailed('Not all files were crawled correctly.')
|
raise TestFailed('Not all files were crawled correctly.')
|
||||||
|
Loading…
Reference in New Issue
Block a user