Skip to content

Commit

Permalink
fix call to deprecated method
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-sicho committed May 27, 2024
1 parent 14b7492 commit cc90e31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qsprpred/utils/testing/check_mixins.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def checkPrep(
split.setDataSet(None)
self.assertRaises(ValueError, split.getDataSet)
split.setDataSet(dataset)
self.assertEquals(dataset, split.getDataSet())
self.assertEqual(dataset, split.getDataSet())

# prepare the dataset and check consistency
dataset.prepareDataset(
Expand Down

0 comments on commit cc90e31

Please sign in to comment.