Skip to content

Commit 54e3909

Browse files
committed
tests/test_pipeline.py
1 parent 06692ab commit 54e3909

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_pipeline.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,9 @@ def test_salt_removal(self) -> None:
121121
("mol2smi", mol2smi),
122122
],
123123
)
124-
generated_smiles_list = salt_remover_pipeline.transform(smiles_with_salt_list)
124+
generated_smiles = salt_remover_pipeline.transform(smiles_with_salt_list)
125125
for generated_smi, smiles_without_salt in zip(
126-
generated_smiles_list,
126+
generated_smiles,
127127
smiles_without_salt_list,
128128
strict=True,
129129
):
@@ -203,7 +203,7 @@ def test_fit_transform_record_remove_nones(self) -> None:
203203
self.assertTrue(are_equal(EXPECTED_OUTPUT, matrix))
204204

205205
def test_caching(self) -> None:
206-
"""Test if the caching gives the same results & is faster on the second run."""
206+
"""Test if the caching gives the same results is faster on the second run."""
207207
molecule_net_logd_df = pd.read_csv(
208208
TEST_DATA_DIR / "molecule_net_logd.tsv.gz",
209209
sep="\t",

0 commit comments

Comments
 (0)