diff options
author | Daniel Salzman <daniel.salzman@nic.cz> | 2024-12-28 10:18:55 +0100 |
---|---|---|
committer | Daniel Salzman <daniel.salzman@nic.cz> | 2024-12-28 10:18:55 +0100 |
commit | 73f7d5ba42584d6b80edef6e1d709098a46109ed (patch) | |
tree | a57322c13f75e4a799aced0468417703af30e6f8 /tests-extra/tests/zone/zonemd_flush/test.py | |
parent | libngtcp2: update embedded libngtcp2 to v1.10.0 (diff) | |
parent | tests-extra: remove superfluous C-style semicolons from Python code (diff) | |
download | knot-73f7d5ba42584d6b80edef6e1d709098a46109ed.tar.xz knot-73f7d5ba42584d6b80edef6e1d709098a46109ed.zip |
Merge branch 'tests_socket_starting' into 'master'
Fix the servers startup in the functional tests.
See merge request knot/knot-dns!1736
Diffstat (limited to 'tests-extra/tests/zone/zonemd_flush/test.py')
-rw-r--r-- | tests-extra/tests/zone/zonemd_flush/test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests-extra/tests/zone/zonemd_flush/test.py b/tests-extra/tests/zone/zonemd_flush/test.py index 425b259b1..81fb2033e 100644 --- a/tests-extra/tests/zone/zonemd_flush/test.py +++ b/tests-extra/tests/zone/zonemd_flush/test.py @@ -55,7 +55,7 @@ def check_serial_incr(server, zones, serials, expect_incr, msg): new_serials = server.zones_wait(zones, serials) for z in zones: if new_serials[z.name] != serials[z.name] + expect_incr: - err_str = "%s: zone %s serial incremented by %d" % (msg, z.name, new_serials[z.name] - serial[z.name]); + err_str = "%s: zone %s serial incremented by %d" % (msg, z.name, new_serials[z.name] - serial[z.name]) detail_log(err_str) set_err(err_str) serials[z.name] = new_serials[z.name] |