Merge "tempest: Make _create_router_with_client obey enable_snat=False" into stable/newton

This commit is contained in:
Jenkins 2017-06-30 22:28:36 +00:00 committed by Gerrit Code Review
commit 4c6afa54b1
1 changed files with 1 additions and 1 deletions

View File

@ -317,7 +317,7 @@ class BaseNetworkTest(test.BaseTestCase):
ext_gw_info = {}
if external_network_id:
ext_gw_info['network_id'] = external_network_id
if enable_snat:
if enable_snat is not None:
ext_gw_info['enable_snat'] = enable_snat
body = cls.client.create_router(
router_name, external_gateway_info=ext_gw_info,