summaryrefslogtreecommitdiff
path: root/python/samba/tests/registry.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/samba/tests/registry.py')
-rw-r--r--python/samba/tests/registry.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/samba/tests/registry.py b/python/samba/tests/registry.py
index f6af5f7bd15..51b280a6348 100644
--- a/python/samba/tests/registry.py
+++ b/python/samba/tests/registry.py
@@ -27,11 +27,11 @@ from subprocess import Popen, PIPE
class HelperTests(samba.tests.TestCase):
def test_predef_to_name(self):
- self.assertEquals("HKEY_LOCAL_MACHINE",
+ self.assertEqual("HKEY_LOCAL_MACHINE",
registry.get_predef_name(0x80000002))
def test_str_regtype(self):
- self.assertEquals("REG_DWORD", registry.str_regtype(4))
+ self.assertEqual("REG_DWORD", registry.str_regtype(4))
class HiveTests(samba.tests.TestCaseInTempDir):