diff options
author | Kiall Mac Innes <kiall@hp.com> | 2013-06-06 09:29:43 +0100 |
---|---|---|
committer | Kiall Mac Innes <kiall@hp.com> | 2013-06-06 09:29:43 +0100 |
commit | 2d3ef40bdacd12bf6b532f2bfd936b1a3ab78157 (patch) | |
tree | 9e2b7192fa05e00052be6dd5ba322eb43bf8928f | |
parent | 1d57994581a370307f8dfcdcf7acff1260ba9d0f (diff) | |
download | designate-2d3ef40bdacd12bf6b532f2bfd936b1a3ab78157.tar.gz |
Fix pyflakes error
Change-Id: Ifc202bb8bceebb1daf2ae2196af075213fe31d7c
-rw-r--r-- | moniker/tests/test_central/test_service.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/moniker/tests/test_central/test_service.py b/moniker/tests/test_central/test_service.py index 4437f508..2f5d913c 100644 --- a/moniker/tests/test_central/test_service.py +++ b/moniker/tests/test_central/test_service.py @@ -671,7 +671,7 @@ class CentralServiceTest(CentralTestCase): values['name'] = 'www.%s' % parent_domain['name'] # Create the subdomain - sub_domain = self.central_service.create_domain(context, values=values) + self.central_service.create_domain(context, values=values) # Attempt to delete the parent domain with self.assertRaises(exceptions.DomainHasSubdomain): |