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

Appease the linter.

Signed-off-by: Christian Funkhouser <cfunkhouser@heroku.com>
This commit is contained in:
Christian Funkhouser
2019-04-04 10:33:31 -04:00
parent 8639bc0af5
commit 1d9553b93a

View File

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