Fix missing super's skip_checks()

The skip_checks of NetworksTestDHCPv6 didn't call super's skip_checks().

Change-Id: I1c0902e3c06886812029fae0e4435bb6674f57df
Closes-Bug: 1717358
This commit is contained in:
Hirofumi Ichihara 2017-09-14 14:45:15 -06:00
parent 186441ce47
commit b9d0c5418d
1 changed files with 1 additions and 0 deletions

View File

@ -33,6 +33,7 @@ class NetworksTestDHCPv6(base.BaseNetworkTest):
@classmethod
def skip_checks(cls):
super(NetworksTestDHCPv6, cls).skip_checks()
msg = None
if not CONF.network_feature_enabled.ipv6:
msg = "IPv6 is not enabled"