Browse Source

Fix BaseProvider test call expect

pull/768/head
Ross McFarland 4 years ago
parent
commit
b29c27df7c
No known key found for this signature in database GPG Key ID: 943B179E15D3B22A
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tests/test_octodns_provider_base.py

+ 1
- 1
tests/test_octodns_provider_base.py 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)


Loading…
Cancel
Save