summaryrefslogtreecommitdiffstats
path: root/tests-extra/tests/dnssec/nsec3_opt_out/test.py
diff options
context:
space:
mode:
authorDavid Vašek <david.vasek@nic.cz>2024-12-18 12:51:03 +0100
committerDavid Vašek <david.vasek@nic.cz>2024-12-26 01:13:42 +0100
commit1cc5bdba001c078b222b6f4f07c5567906de7b4c (patch)
treea57322c13f75e4a799aced0468417703af30e6f8 /tests-extra/tests/dnssec/nsec3_opt_out/test.py
parenttests-extra: fix the all-servers startup method (diff)
downloadknot-1cc5bdba001c078b222b6f4f07c5567906de7b4c.tar.xz
knot-1cc5bdba001c078b222b6f4f07c5567906de7b4c.zip
tests-extra: remove superfluous C-style semicolons from Python code
Diffstat (limited to 'tests-extra/tests/dnssec/nsec3_opt_out/test.py')
-rw-r--r--tests-extra/tests/dnssec/nsec3_opt_out/test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests-extra/tests/dnssec/nsec3_opt_out/test.py b/tests-extra/tests/dnssec/nsec3_opt_out/test.py
index 12baa3761..22bbe1ef9 100644
--- a/tests-extra/tests/dnssec/nsec3_opt_out/test.py
+++ b/tests-extra/tests/dnssec/nsec3_opt_out/test.py
@@ -23,7 +23,7 @@ def check_deleg(deleg, nsec3_bitmap, opt_out_flag, msg):
if first_bitmap != nsec3_bitmap:
set_err("NSEC3 bitmap for '%s'" % msg)
- first_flags = first_nsec3.split()[5];
+ first_flags = first_nsec3.split()[5]
if first_flags != str(opt_out_flag):
set_err("NSEC3 opt-out flag %s != %s for '%s'" % (first_flags, str(opt_out_flag), msg))