Skip to content

Commit b479d5a

Browse files
committed
remove absolete path for mocked open func
1 parent 553f083 commit b479d5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/dataset_classes/testTox21Challenge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def test_load_data_from_file(self, mock_sdmol_supplier: patch) -> None:
3838
mock_file = mock_open(read_data=Tox21ChallengeMockData.get_raw_train_data())
3939
with patch("builtins.open", mock_file):
4040
with open(
41-
r"G:\github-aditya0by0\chebai_data\tox21_challenge\tox21_10k_data_all.sdf\tox21_10k_data_all.sdf",
41+
r"fake/path",
4242
"rb",
4343
) as f:
4444
suppl = Chem.ForwardSDMolSupplier(f)

0 commit comments

Comments
 (0)