diff options
| -rw-r--r-- | nova/tests/integrated/test_api_samples.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/nova/tests/integrated/test_api_samples.py b/nova/tests/integrated/test_api_samples.py index 5abcaaff7..d6db500e7 100644 --- a/nova/tests/integrated/test_api_samples.py +++ b/nova/tests/integrated/test_api_samples.py @@ -1113,7 +1113,6 @@ class AggregatesSampleJsonTest(ServersSampleBase): def test_add_host(self): aggregate_id = self.test_aggregate_create() subs = { - "action": "add_host", "host_name": self.compute.host, } response = self._do_post('os-aggregates/%s/action' % aggregate_id, @@ -1125,7 +1124,6 @@ class AggregatesSampleJsonTest(ServersSampleBase): def test_remove_host(self): self.test_add_host() subs = { - "action": "add_host", "host_name": self.compute.host, } response = self._do_post('os-aggregates/1/action', |
