Fix Pep8 indentation errors missed by Pep8 1.4.5
Pep8 1.4.6+ finds additional indentation errors. Fix them in preparation of being able to switch to a newer Pep8 version. Change-Id: I50493675c33524e577a0eebf3f9b74037ed9721c
This commit is contained in:
parent
776260836a
commit
9cbab25e5e
@ -42,7 +42,8 @@ class ControllerBaseTest(testing.TestBase):
|
||||
if not issubclass(self.controller_class, self.controller_base_class):
|
||||
self.skipTest('{0} is not an instance of {1}. '
|
||||
'Tests not supported'.format(
|
||||
self.controller_class, self.controller_base_class))
|
||||
self.controller_class,
|
||||
self.controller_base_class))
|
||||
|
||||
self.driver = self.driver_class(cfg.ConfigOpts())
|
||||
self.controller = self.controller_class(self.driver)
|
||||
|
@ -38,7 +38,8 @@ class ControllerBaseTest(testing.TestBase):
|
||||
if not issubclass(self.controller_class, self.controller_base_class):
|
||||
self.skipTest('{0} is not an instance of {1}. '
|
||||
'Tests not supported'.format(
|
||||
self.controller_class, self.controller_base_class))
|
||||
self.controller_class,
|
||||
self.controller_base_class))
|
||||
|
||||
self.driver = self.driver_class()
|
||||
self.controller = self.controller_class(self.driver)
|
||||
|
Loading…
x
Reference in New Issue
Block a user