Fix BaseProvider test call expect

This commit is contained in:
Ross McFarland
2021-09-04 17:45:32 -07:00
parent 4ab3238f24
commit b29c27df7c
+1 -1
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)