tests: don't set description in test_blank_update_clears_association

'description' attribute of floating IPs is part of
standard-attr-description API extension, so using it in the test case
without requiring the extension is incorrect. But instead of adding the
new requirement, this patch removes 'description' from the floating IP
payload because it's not needed to prove the point of the test case
(that an empty update body will disassociate the floating IP).

Change-Id: I9ab5b0ba5f32f73818f8eac8a0001eeb13248423
(cherry picked from commit 62503dcb78)
This commit is contained in:
Ihar Hrachyshka 2017-08-03 12:37:43 -07:00
parent faa9d43dd5
commit f11afc57f0
1 changed files with 0 additions and 1 deletions

View File

@ -49,7 +49,6 @@ class FloatingIPTestJSON(base.BaseNetworkTest):
body = self.client.create_floatingip(
floating_network_id=self.ext_net_id,
port_id=self.ports[0]['id'],
description='d1'
)['floatingip']
self.assertEqual(self.ports[0]['id'], body['port_id'])
body = self.client.update_floatingip(body['id'])['floatingip']