We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b1c273 commit 22d8d7cCopy full SHA for 22d8d7c
axelrod/tests/unit/test_classification.py
@@ -89,7 +89,7 @@ def test_classifier_works_on_non_instances(self):
89
warnings.simplefilter("default", category=UserWarning)
90
with warnings.catch_warnings(record=True) as w:
91
self.assertEqual(Classifiers["memory_depth"](axl.TitForTat), 1)
92
- self.assertEquals(len(w), 1)
+ self.assertEqual(len(w), 1)
93
94
def test_key_error_on_uknown_classifier(self):
95
with self.assertRaises(KeyError):
0 commit comments