Fix restart_on_changed helper (#6)

The restart_on_changed helper was moved to use the config_change
context manager but the code that checks that the config file is
correctly reverted at the end of the test was accidently left within
the context.
This commit is contained in:
Liam Young
2019-05-17 14:08:58 +01:00
committed by Chris MacNaughton
parent 6dad655b5d
commit 9721fe5d42

View File

@@ -217,13 +217,12 @@ class OpenStackBaseTest(unittest.TestCase):
services,
model_name=self.model_name)
logging.debug(
'Waiting for updates to propagate to '.format(config_file))
model.block_until_oslo_config_entries_match(
self.application_name,
config_file,
default_entry,
model_name=self.model_name)
logging.debug('Waiting for updates to propagate to '.format(config_file))
model.block_until_oslo_config_entries_match(
self.application_name,
config_file,
default_entry,
model_name=self.model_name)
@contextlib.contextmanager
def pause_resume(self, services):