Skip to content

Commit

Permalink
Fix for failing test on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
JBWilkie committed Aug 30, 2024
1 parent a123c88 commit 9776767
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/darwin/dataset/remote_dataset_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -810,7 +810,7 @@ def test_create_channels_too_many_files(self, setup_zip):
files = natsorted(list(base_path.glob("*")))
with pytest.raises(
ValueError,
match=f"No multi-channel item can have more than 16 channels. The following directory has 17 files: {base_path}",
match=r"No multi-channel item can have more than 16 channels. The following directory has 17 files: .*",
):
MultiFileItem(base_path, files, merge_mode=ItemMergeMode.CHANNELS)

Expand Down

0 comments on commit 9776767

Please sign in to comment.