From c8e0fbc4af8d557a6a3e075a5e5e9d078968bfad Mon Sep 17 00:00:00 2001 From: Miod Vallat Date: Thu, 23 Oct 2025 07:36:00 +0200 Subject: [PATCH] Fix buglet which only caused a warning during tests. Signed-off-by: Miod Vallat --- regression-tests.api/test_Zones.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- 2.47.3