Index: tests/test_multi_source.py |
=================================================================== |
--- a/tests/test_multi_source.py |
+++ b/tests/test_multi_source.py |
@@ -96,17 +96,17 @@ |
def test_read_file(multi_source): |
assert multi_source.read_file('a') == ('b', 'foo:a') |
assert multi_source.read_file('b') == ('b', 'bar:b') |
assert multi_source.read_file('c') == ('d', 'foo:c') |
def test_read_binary(multi_source): |
- assert isinstance(multi_source.read_file('a', binary=True)[0], type(b'b')) |
+ assert isinstance(multi_source.read_file('a', True)[0], type(b'b')) |
def test_list_files(multi_source): |
assert sorted(multi_source.list_files('')) == ['a', 'a/b/c', 'a/d', 'b', |
'c'] |
assert sorted(multi_source.list_files('a')) == ['a/b/c', 'a/d'] |
assert sorted(multi_source.list_files('a/')) == ['a/b/c', 'a/d'] |