Skip to content

Commit

Permalink
py312 test compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Perfect5th committed Aug 20, 2024
1 parent 975c7e3 commit 87465ea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions landscape/client/tests/test_registration.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ def test_success(self):
"https://my-server.local/message-system",
)

self.assertEquals(registration_info.insecure_id, 1)
self.assertEquals(registration_info.secure_id, "mysecureid")
self.assertEquals(registration_info.server_uuid, "thisisaserveruuid")
self.assertEqual(registration_info.insecure_id, 1)
self.assertEqual(registration_info.secure_id, "mysecureid")
self.assertEqual(registration_info.server_uuid, "thisisaserveruuid")

def test_exchange_http_code_error_404(self):
"""If a 404 is raised during the message exchange, a
Expand Down

0 comments on commit 87465ea

Please sign in to comment.