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
This commit is contained in:
Ihar Hrachyshka 2017-08-03 12:37:43 -07:00
parent b82aaf7724
commit 62503dcb78
1 changed files with 0 additions and 1 deletions

View File

@ -51,7 +51,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.floating_ips.append(body)
self.assertEqual(self.ports[0]['id'], body['port_id'])