Merge "django22: django.test.client.encode_multipart no longer accepts None"

This commit is contained in:
Zuul 2019-09-13 05:59:57 +00:00 committed by Gerrit Code Review
commit 4557db7ee9
2 changed files with 3 additions and 3 deletions

View File

@ -10,8 +10,8 @@
check:
jobs:
- horizon-openstack-tox-python3-django111
- horizon-openstack-tox-python3-django22:
voting: false
- horizon-openstack-tox-python3-django22
gate:
jobs:
- horizon-openstack-tox-python3-django111
- horizon-openstack-tox-python3-django22

View File

@ -331,7 +331,7 @@ class FirewallTests(test.TestCase):
rules = self.fw_rules_v2.list()
tenant_id = self.tenant.id
form_data = {'description': policy.description,
'firewall_rules': None,
'firewall_rules': '',
'shared': policy.shared,
'audited': policy.audited
}