From a7bb6a306c27c38749d308076925762baa5ca391 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Thu, 10 Dec 2020 08:39:31 -0800 Subject: [PATCH] Remove corresponding nbsp's from manager tests --- 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 dc047e8..4e1a756 100644 --- a/tests/test_octodns_manager.py +++ b/tests/test_octodns_manager.py @@ -180,7 +180,7 @@ class TestManager(TestCase): tc = Manager(get_config_filename('unknown-source-zone.yaml')) \ .sync() self.assertEquals('Invalid alias zone alias.tests.: source zone ' - 'does-not-exists.tests. does not exist', + 'does-not-exists.tests. does not exist', text_type(ctx.exception)) # Alias zone that points to another alias zone. @@ -188,7 +188,7 @@ class TestManager(TestCase): tc = Manager(get_config_filename('alias-zone-loop.yaml')) \ .sync() self.assertEquals('Invalid alias zone alias-loop.tests.: source ' - 'zone alias.tests. is an alias zone', + 'zone alias.tests. is an alias zone', text_type(ctx.exception)) def test_compare(self):