Browse Source

Appease the linter.

Signed-off-by: Christian Funkhouser <cfunkhouser@heroku.com>
pull/336/head
Christian Funkhouser 7 years ago
parent
commit
1d9553b93a
No known key found for this signature in database GPG Key ID: 6894A9878C7FB782
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      tests/test_octodns_manager.py

+ 2
- 2
tests/test_octodns_manager.py View File

@ -222,7 +222,7 @@ class TestManager(TestCase):
with self.assertRaises(Exception) as ctx: with self.assertRaises(Exception) as ctx:
manager.dump('unit.tests.', tmpdir.dirname, False, False, manager.dump('unit.tests.', tmpdir.dirname, False, False,
'nope')
'nope')
self.assertEquals('Unknown source: nope', ctx.exception.message) self.assertEquals('Unknown source: nope', ctx.exception.message)
manager.dump('unit.tests.', tmpdir.dirname, False, False, 'in') manager.dump('unit.tests.', tmpdir.dirname, False, False, 'in')
@ -231,7 +231,7 @@ class TestManager(TestCase):
# tyring to find sub zones # tyring to find sub zones
with self.assertRaises(IOError): with self.assertRaises(IOError):
manager.dump('unknown.zone.', tmpdir.dirname, False, False, manager.dump('unknown.zone.', tmpdir.dirname, False, False,
'in')
'in')
def test_dump_empty(self): def test_dump_empty(self):
with TemporaryDirectory() as tmpdir: with TemporaryDirectory() as tmpdir:


Loading…
Cancel
Save