Skip to content

Commit 3a46ddc

Browse files
committed
test_dataloader wasn't passing the data_path correctly
1 parent 1a402ba commit 3a46ddc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/test_dataloaders.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@
2626
def test_load_data(data_name, expected):
2727
dataset = load_data(
2828
data_name,
29-
data_path=Path("data"),
30-
download=True,
29+
data_dir=Path("data"),
3130
transform=transforms.ToTensor(),
3231
)
3332
assert isinstance(dataset, expected)

0 commit comments

Comments
 (0)