Fix missing super's skip_checks()

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

Change-Id: I1c0902e3c06886812029fae0e4435bb6674f57df
Closes-Bug: 1717358
(cherry picked from commit b9d0c5418d)
This commit is contained in:
Hirofumi Ichihara 2017-09-14 14:45:15 -06:00 committed by Ihar Hrachyshka
parent 7b2a0da18c
commit e4ce73c975
1 changed files with 1 additions and 0 deletions

View File

@ -29,6 +29,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"