From b29c27df7c1f87337dda9f21b0b0a16a1740c3c6 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Sat, 4 Sep 2021 17:45:32 -0700 Subject: [PATCH] Fix BaseProvider test call expect --- tests/test_octodns_provider_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_octodns_provider_base.py b/tests/test_octodns_provider_base.py index cee7c2c..fd46753 100644 --- a/tests/test_octodns_provider_base.py +++ b/tests/test_octodns_provider_base.py @@ -461,7 +461,7 @@ class TestBaseProvider(TestCase): normal.supports_warn_or_except('Hello World!', 'Goodbye') normal.log.warning.assert_called_once() normal.log.warning.assert_has_calls([ - call('Hello World!; Goodbye') + call('%s; %s', 'Hello World!', 'Goodbye') ]) strict = MinimalProvider(strict_supports=True)