Skip to content

Commit e45ecb5

Browse files
committed
fix failing test
1 parent 484bb4f commit e45ecb5

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

tests/services/upload/test_coverage_file_finder.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,13 @@ def test_find_coverage_files_mocked_search_files(self, mocker):
2727
UploadCollectionResultFile(Path("a/b.txt")),
2828
]
2929

30-
assert CoverageFileFinder().find_coverage_files() == expected
30+
expected_paths = sorted([file.get_filename() for file in expected])
31+
32+
actual_paths = sorted(
33+
[file.get_filename() for file in CoverageFileFinder().find_coverage_files()]
34+
)
35+
36+
assert expected_paths == actual_paths
3137

3238
def test_find_coverage_files(self, tmp_path):
3339
(tmp_path / "sub").mkdir()

0 commit comments

Comments
 (0)