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)