From: Miod Vallat Date: Thu, 23 Oct 2025 05:36:00 +0000 (+0200) Subject: Fix buglet which only caused a warning during tests. X-Git-Tag: rec-5.4.0-alpha1~155^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c8e0fbc4af8d557a6a3e075a5e5e9d078968bfad;p=thirdparty%2Fpdns.git Fix buglet which only caused a warning during tests. Signed-off-by: Miod Vallat --- diff --git a/regression-tests.api/test_Zones.py b/regression-tests.api/test_Zones.py index bfcc978cbb..932fa16a70 100644 --- a/regression-tests.api/test_Zones.py +++ b/regression-tests.api/test_Zones.py @@ -87,7 +87,7 @@ class ZonesApiTestCase(ApiTestCase): for item in json['errors']: if expected in item: found = True - assert found, "%r not found in %r" (expected, errors) + assert found, "%r not found in %r" % (expected, errors) class Zones(ZonesApiTestCase):