Unbreak test_created_router_interface (heat)

The test become broken after 49c0fe5630.
This change adds the missing variable.

The test failed with:
AttributeError: 'NeutronResourcesTestJSON' object has no attribute
'ports_client'

Change-Id: Ib5b8391ee86ce0797f2935e75c2a7e92200ee3d1
This commit is contained in:
Attila Fazekas 2015-11-19 11:18:10 +01:00
parent 3a146602a2
commit d4b1e44481

View File

@ -45,6 +45,7 @@ class NeutronResourcesTestJSON(base.BaseOrchestrationTest):
super(NeutronResourcesTestJSON, cls).setup_clients()
cls.network_client = cls.os.network_client
cls.subnets_client = cls.os.subnets_client
cls.ports_client = cls.os.ports_client
@classmethod
def resource_setup(cls):