Skip to content

Commit

Permalink
Fix deprecation warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
emmiegit committed Mar 21, 2024
1 parent ef7ab59 commit 6727c5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_site_members.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def test_site_members_regular(self):
mock.assert_called_once()

self.assertIsInstance(models, list)
self.assertEquals(len(models), 6)
self.assertEqual(len(models), 6)
self.assertIsInstance(models[0], SiteMemberData)
self.assertEqual(models[0].name, "The Administrator")
self.assertEqual(models[1].name, "Dr Gears")
Expand Down

0 comments on commit 6727c5e

Please sign in to comment.