Remove zone_id on import compare

If the import is fast, it can be done by the show, so we can't compare
zone_id.

Closes-Bug: #1734868

Change-Id: I291155304a36142ec2fd2f772215bb10f2dbae11
This commit is contained in:
Thomas Herve 2017-11-28 11:58:14 +01:00
parent 195f5c65ec
commit d8dd2cecff
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ LOG = logging.getLogger(__name__)
class BaseZonesImportTest(base.BaseDnsV2Test):
excluded_keys = ['created_at', 'updated_at', 'version', 'links',
'status', 'message']
'status', 'message', 'zone_id']
class ZonesImportTest(BaseZonesImportTest):