349ba75410
Thorough replacement of git.openstack.org and review.openstack.org URLs with their opendev.org counterparts. Change-Id: I88e894db7b854d32593c770f5aa9b8a91fad7866
18 lines
391 B
YAML
18 lines
391 B
YAML
---
|
|
fixes:
|
|
- |
|
|
Patch https://review.opendev.org/#/c/499575/ introduced
|
|
support creating Neutron port with certain capabilities.
|
|
Currently capabilities list interpreted as string this change
|
|
fix it.
|
|
|
|
tempest.conf
|
|
[network]
|
|
port_profile = capabilities:[switchdev]
|
|
|
|
result:
|
|
{'capabilities':'[switchdev]'}
|
|
|
|
expected:
|
|
{'capabilities': ['switchdev']}
|