We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cede2d commit 3a9a554Copy full SHA for 3a9a554
tests/informatics/test_predictors.py
@@ -276,9 +276,9 @@ def test_chemical_featurizer(chemical_featurizer):
276
'type': 'ChemicalFormulaFeaturizer'
277
}
278
279
- chemical_featurizer.powers = [0.5, -1.5]
+ chemical_featurizer.powers = [0.5, -1]
280
with pytest.warns(PendingDeprecationWarning):
281
- assert chemical_featurizer.powers_as_float == [0.5, -1.5]
+ assert chemical_featurizer.powers_as_float == [0.5, -1.0]
282
with pytest.warns(UserWarning):
283
assert chemical_featurizer.powers == [0, -1]
284
0 commit comments