]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
python:tests: Fix spelling in to test_samba_dnsupdate_no_change
authorPavel Filipenský <pfilipensky@samba.org>
Mon, 15 Jul 2024 08:31:18 +0000 (10:31 +0200)
committerPavel Filipensky <pfilipensky@samba.org>
Wed, 17 Jul 2024 07:48:31 +0000 (07:48 +0000)
Signed-off-by: Pavel Filipenský <pfilipensky@samba.org>
Reviewed-by: Reviewed-by: Martin Schwenke <martin@meltin.net>
python/samba/tests/blackbox/samba_dnsupdate.py

index e326fbb592b664f53afca1106b6d969eaa7801b9..e2c1e1450ee2e50eec541c829335e1dca9f9a496 100644 (file)
@@ -39,14 +39,14 @@ class SambaDnsUpdateTests(samba.tests.BlackboxTestCase):
         except samba.tests.BlackboxProcessError:
             pass
 
-    def test_samba_dnsupate_no_change(self):
+    def test_samba_dnsupdate_no_change(self):
         try:
             out = self.check_output("samba_dnsupdate --verbose")
         except samba.tests.BlackboxProcessError as e:
             self.fail("Error calling samba_dnsupdate: %s" % e)
         self.assertTrue(b"No DNS updates needed" in out, out)
 
-    def test_samba_dnsupate_set_ip(self):
+    def test_samba_dnsupdate_set_ip(self):
         try:
             out = self.check_output("samba_dnsupdate --verbose --current-ip=10.0.0.1")
             self.assertTrue(b" DNS updates and" in out, out)