]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Fix buglet which only caused a warning during tests.
authorMiod Vallat <miod.vallat@powerdns.com>
Thu, 23 Oct 2025 05:36:00 +0000 (07:36 +0200)
committerMiod Vallat <miod.vallat@powerdns.com>
Thu, 23 Oct 2025 05:36:00 +0000 (07:36 +0200)
Signed-off-by: Miod Vallat <miod.vallat@powerdns.com>
regression-tests.api/test_Zones.py

index bfcc978cbb5dc9dbe4aaf4bea16f35935db54a57..932fa16a70c10868f6355f824bbd67a51ed1bc78 100644 (file)
@@ -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):