Skip to content

Commit

Permalink
fix deprecated testmethod
Browse files Browse the repository at this point in the history
  • Loading branch information
petschki committed Apr 17, 2024
1 parent 7c4c357 commit 02cbc3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/bda/plone/shop/tests/test_controlpanel.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ def setUp(self):
set_browserlayer(self.request)

def test_foo(self):
self.assertEquals(1, 1)
self.assertEqual(1, 1)
2 changes: 1 addition & 1 deletion src/bda/plone/shop/tests/test_dx.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ def setUp(self):
set_browserlayer(self.request)

def test_foo(self):
self.assertEquals(1, 1)
self.assertEqual(1, 1)

0 comments on commit 02cbc3b

Please sign in to comment.