]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Fix implicit string concatenation in tests-checkds.py
authorMichal Nowak <mnowak@isc.org>
Thu, 16 Jun 2022 09:25:43 +0000 (11:25 +0200)
committerMichal Nowak <mnowak@isc.org>
Thu, 16 Jun 2022 09:42:29 +0000 (11:42 +0200)
pylint 2.14.2 reports the following warnings:

    bin/tests/system/checkds/tests-checkds.py:265:0: W1404: Implicit string concatenation found in call (implicit-str-concat)
    bin/tests/system/checkds/tests-checkds.py:273:0: W1404: Implicit string concatenation found in call (implicit-str-concat)

bin/tests/system/checkds/tests-checkds.py

index 56777fb3af7fc5d29013c44ee7a70b0e0cc76f8f..1d6bda4c7ff1847c4d5c8efa93994d6294b51f0c 100755 (executable)
@@ -262,7 +262,7 @@ def test_checkds_dspublished(named_port):
     zone_check(server, "dspublished.checkds.")
     wait_for_log(
         "ns9/named.run",
-        "zone dspublished.checkds/IN (signed): checkds: " "DS response from 10.53.0.2",
+        "zone dspublished.checkds/IN (signed): checkds: DS response from 10.53.0.2",
     )
     keystate_check(parent, "dspublished.checkds.", "DSPublish")
 
@@ -270,7 +270,7 @@ def test_checkds_dspublished(named_port):
     zone_check(server, "reference.checkds.")
     wait_for_log(
         "ns9/named.run",
-        "zone reference.checkds/IN (signed): checkds: " "DS response from 10.53.0.2",
+        "zone reference.checkds/IN (signed): checkds: DS response from 10.53.0.2",
     )
     keystate_check(parent, "reference.checkds.", "DSPublish")