File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -121,9 +121,9 @@ def test_salt_removal(self) -> None:
121
121
("mol2smi" , mol2smi ),
122
122
],
123
123
)
124
- generated_smiles_list = salt_remover_pipeline .transform (smiles_with_salt_list )
124
+ generated_smiles = salt_remover_pipeline .transform (smiles_with_salt_list )
125
125
for generated_smi , smiles_without_salt in zip (
126
- generated_smiles_list ,
126
+ generated_smiles ,
127
127
smiles_without_salt_list ,
128
128
strict = True ,
129
129
):
@@ -203,7 +203,7 @@ def test_fit_transform_record_remove_nones(self) -> None:
203
203
self .assertTrue (are_equal (EXPECTED_OUTPUT , matrix ))
204
204
205
205
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."""
207
207
molecule_net_logd_df = pd .read_csv (
208
208
TEST_DATA_DIR / "molecule_net_logd.tsv.gz" ,
209
209
sep = "\t " ,
You can’t perform that action at this time.
0 commit comments