server: fix py3.12 related unittest deprecation

This commit is contained in:
Dan Bungert 2024-02-26 16:59:21 -07:00
parent 6fc7f46dd4
commit d266ac6a3f
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ class TestController(SubiTestCase):
exception = ctx.exception exception = ctx.exception
# Assert error section is based on autoinstall_key # Assert error section is based on autoinstall_key
self.assertEquals(exception.owner, "some-key") self.assertEqual(exception.owner, "some-key")
# Assert apport report is not created # Assert apport report is not created
# This only checks that controllers do not manually create an apport # This only checks that controllers do not manually create an apport