1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

Fix BaseProvider test call expect

This commit is contained in:
Ross McFarland
2021-09-04 17:45:32 -07:00
parent 4ab3238f24
commit b29c27df7c

View File

@@ -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)