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 831ac8add1)
This commit is contained in:
Michal Nowak 2022-06-16 11:25:43 +02:00
parent b7ff587512
commit 8b77533ac3
No known key found for this signature in database
GPG key ID: 24A3E8463AEE5E56

View file

@ -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")