Skip to content

Commit

Permalink
Fix missing mock variable reference
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Bain (Woven by Toyota committed Oct 1, 2024
1 parent a771c6e commit 8697149
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def test_dataset(self) -> None:
local_cache_path_prefix=tmpdir,
columns_to_load=None,
storage=fake_s3_storage,
s3_path_factory=None,
s3_path_factory=fake_s3_path_factory,
pa_filesystem=pafs.LocalFileSystem(),
)

Expand All @@ -117,7 +117,7 @@ def test_filters_dataset(self) -> None:
local_cache_path_prefix=tmpdir,
columns_to_load=None,
storage=fake_s3_storage,
s3_path_factory=None,
s3_path_factory=fake_s3_path_factory,
pa_filesystem=pafs.LocalFileSystem(),
filters=[("foo", "in", filtered_value_list)],
)
Expand Down

0 comments on commit 8697149

Please sign in to comment.