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 ba49250 commit 981ecc9Copy full SHA for 981ecc9
wger/exercises/tests/test_change_exercise_author.py
@@ -60,7 +60,7 @@ def test_can_update_exercise_base(self):
60
self.assertIn('Exercise and/or exercise base has been updated', self.out.getvalue())
61
62
exercise_base = ExerciseBase.objects.get(id=2)
63
- self.assertEquals(exercise_base.license_author, "tom")
+ self.assertEqual(exercise_base.license_author, "tom")
64
65
def test_can_update_exercise(self):
66
"""
@@ -74,4 +74,4 @@ def test_can_update_exercise(self):
74
75
76
exercise = Exercise.objects.get(id=1)
77
- self.assertEquals(exercise.license_author, "tom")
+ self.assertEqual(exercise.license_author, "tom")
0 commit comments