From: Pavel Filipenský Date: Mon, 15 Jul 2024 08:31:18 +0000 (+0200) Subject: python:tests: Fix spelling in to test_samba_dnsupdate_no_change X-Git-Tag: tdb-1.4.11~117 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3e98649aa13df0c5d14c7d75e1ea3a20b4639161;p=thirdparty%2Fsamba.git python:tests: Fix spelling in to test_samba_dnsupdate_no_change Signed-off-by: Pavel Filipenský Reviewed-by: Reviewed-by: Martin Schwenke --- diff --git a/python/samba/tests/blackbox/samba_dnsupdate.py b/python/samba/tests/blackbox/samba_dnsupdate.py index e326fbb592b..e2c1e1450ee 100644 --- a/python/samba/tests/blackbox/samba_dnsupdate.py +++ b/python/samba/tests/blackbox/samba_dnsupdate.py @@ -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)