Skip to content

Commit 9683fe8

Browse files
committed
Fix bug with pathing during dataloader tests
1 parent 9b5f6cb commit 9683fe8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_wrappers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def test_load_data():
5050
)
5151

5252
for name in dataset_names:
53-
dataset = load_data(name, train=False, data_dir=Path.cwd(), transform=trans)
53+
dataset = load_data(name, train=False, data_dir=Path.cwd() / "Data", transform=trans)
5454

5555
im, _ = dataset.__getitem__(0)
5656

0 commit comments

Comments
 (0)