tests: minor formatting

This commit is contained in:
Marek Marczykowski-Górecki 2017-05-13 01:02:46 +02:00
parent d4353c2a30
commit e598735c3b
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724

View File

@ -815,6 +815,7 @@ class TC_00_VMs(AdminAPITestCase):
def test_220_start(self):
func_mock = unittest.mock.Mock()
@asyncio.coroutine
def coroutine_mock(*args, **kwargs):
return func_mock(*args, **kwargs)
@ -825,6 +826,7 @@ class TC_00_VMs(AdminAPITestCase):
def test_230_shutdown(self):
func_mock = unittest.mock.Mock()
@asyncio.coroutine
def coroutine_mock(*args, **kwargs):
return func_mock(*args, **kwargs)
@ -835,6 +837,7 @@ class TC_00_VMs(AdminAPITestCase):
def test_240_pause(self):
func_mock = unittest.mock.Mock()
@asyncio.coroutine
def coroutine_mock(*args, **kwargs):
return func_mock(*args, **kwargs)
@ -845,6 +848,7 @@ class TC_00_VMs(AdminAPITestCase):
def test_250_unpause(self):
func_mock = unittest.mock.Mock()
@asyncio.coroutine
def coroutine_mock(*args, **kwargs):
return func_mock(*args, **kwargs)
@ -855,6 +859,7 @@ class TC_00_VMs(AdminAPITestCase):
def test_260_kill(self):
func_mock = unittest.mock.Mock()
@asyncio.coroutine
def coroutine_mock(*args, **kwargs):
return func_mock(*args, **kwargs)