mirror of
https://github.com/wassname/catalyst.git
synced 2026-06-30 07:35:55 +08:00
16e75a31d4
The check() function in zipline.utils.test_utils was only comparing lists up to the length of the shortest list. This fix uses izip_longest instead of izip so it compares up to the length of the longest list, which among other things means that it will now correctly report when one list is empty and the other is not.