diff options
author | Ken'ichi Ohmichi <ken-oomichi@wx.jp.nec.com> | 2015-12-09 08:12:47 +0000 |
---|---|---|
committer | Ken'ichi Ohmichi <ken-oomichi@wx.jp.nec.com> | 2015-12-15 10:19:30 +0000 |
commit | 36b714cda107d07cda462e738009c2052b864c60 (patch) | |
tree | 593b3afd3683379e331abee1b83355776aa97fc2 /tempest/api/compute/servers/test_instance_actions.py | |
parent | 2d4f47fac7ed1ae60ee41f86cb2c5535387c16c8 (diff) | |
download | tempest-36b714cda107d07cda462e738009c2052b864c60.tar.gz |
Make server action methods[m-z] use **kwargs
As we discussed on
http://lists.openstack.org/pipermail/openstack-dev/2015-July/068864.html
All http POST/PUT methods need to contain **kwargs as their arguments.
This patch makes server action methods[m-z] use **kwargs.
Partially implements blueprint consistent-service-method-names
Change-Id: I7174723f907fd8962d9d12fe76bec2dc06883938
Diffstat (limited to 'tempest/api/compute/servers/test_instance_actions.py')
-rw-r--r-- | tempest/api/compute/servers/test_instance_actions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tempest/api/compute/servers/test_instance_actions.py b/tempest/api/compute/servers/test_instance_actions.py index 814aec73f..136762983 100644 --- a/tempest/api/compute/servers/test_instance_actions.py +++ b/tempest/api/compute/servers/test_instance_actions.py @@ -35,7 +35,7 @@ class InstanceActionsTestJSON(base.BaseV2ComputeTest): @test.idempotent_id('77ca5cc5-9990-45e0-ab98-1de8fead201a') def test_list_instance_actions(self): # List actions of the provided server - self.client.reboot_server(self.server_id, 'HARD') + self.client.reboot_server(self.server_id, type='HARD') waiters.wait_for_server_status(self.client, self.server_id, 'ACTIVE') body = (self.client.list_instance_actions(self.server_id) |