Merge "Fix missing "raise" before cls.skipException"

This commit is contained in:
Zuul 2019-10-11 01:25:52 +00:00 committed by Gerrit Code Review
commit 45f01b7417
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ class AutoAllocationTopologyExtRbacTest(base.BaseNetworkExtRbacTest):
if len(ports) != expected_ports_count: if len(ports) != expected_ports_count:
msg = "Auto Allocated Topology in use." msg = "Auto Allocated Topology in use."
cls.skipException(msg) raise cls.skipException(msg)
@decorators.idempotent_id('A0606AFE-065E-4C09-8E51-58EE7FBA30A2') @decorators.idempotent_id('A0606AFE-065E-4C09-8E51-58EE7FBA30A2')
@decorators.attr(type='slow') @decorators.attr(type='slow')