Modify MH_tests Old style class definition

Modify class definition from 'class FakeClient' to 'class FakeClient(object)'
old style class declaration in vmware_nsx/tests/unit/nsx_mh/apiclient/fake.py

Closes-Bug:#1647623

Change-Id: Ie49d8b1b85e52618d42d300bda126ff65b56a8ce
This commit is contained in:
QunyingRan 2016-12-06 19:56:07 +08:00 committed by Adit Sarfaty
parent 56eb5550ea
commit 4793ea1cc0

View File

@ -35,7 +35,7 @@ def _validate_resource(body):
_validate_name(body.get('display_name'))
class FakeClient:
class FakeClient(object):
LSWITCH_RESOURCE = 'lswitch'
LPORT_RESOURCE = 'lport'