blob: 7510d47e46d146a1ec88c8c4f05695c60addeda1 [file] [log] [blame]
Noam Angel3c6b0162018-07-08 17:05:35 +03001---
2fixes:
3 - |
4 Patch https://review.openstack.org/#/c/499575/ introduced
5 support creating Neutron port with certain capabilities.
6 Currently capabilities list interpreted as string this change
7 fix it.
8
9 tempest.conf
10 [network]
11 port_profile = capabilities:[switchdev]
12
13 result:
14 {'capabilities':'[switchdev]'}
15
16 expected:
17 {'capabilities': ['switchdev']}