From 1d9553b93ad748bae1f3bff53a6dddffa3d568dd Mon Sep 17 00:00:00 2001 From: Christian Funkhouser Date: Thu, 4 Apr 2019 10:33:31 -0400 Subject: [PATCH] Appease the linter. Signed-off-by: Christian Funkhouser --- tests/test_octodns_manager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_octodns_manager.py b/tests/test_octodns_manager.py index bd48b4a..4c2293e 100644 --- a/tests/test_octodns_manager.py +++ b/tests/test_octodns_manager.py @@ -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: