From: Michal Nowak Date: Thu, 16 Jun 2022 09:25:43 +0000 (+0200) Subject: Fix implicit string concatenation in tests-checkds.py X-Git-Tag: v9.16.31~20^2 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=84d2d2592160974fe3fa77d6e7a500bec944b728;p=thirdparty%2Fbind9.git Fix implicit string concatenation in tests-checkds.py 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) (cherry picked from commit 831ac8add101cd7e73327adef672840a3465af95) --- diff --git a/bin/tests/system/checkds/tests-checkds.py b/bin/tests/system/checkds/tests-checkds.py index 5282e297983..7c50b25e535 100755 --- a/bin/tests/system/checkds/tests-checkds.py +++ b/bin/tests/system/checkds/tests-checkds.py @@ -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")