Skip to content

Commit 4800436

Browse files
committed
Fix file find tuple
1 parent 70571c3 commit 4800436

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/storage/test_file_pipeline_storage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ async def test_child():
5050
storage = FilePipelineStorage()
5151
storage = storage.child("tests/fixtures/text/input")
5252
items = list(storage.find(re.compile(r".*\.txt$")))
53-
assert items == [(str(Path("dulce.txt")), {})]
53+
assert items == [str(Path("dulce.txt"))]
5454

5555
output = await storage.get("dulce.txt")
5656
assert len(output) > 0

0 commit comments

Comments
 (0)