From: Yaroslav Brustinov Date: Thu, 12 Jan 2017 13:38:28 +0000 (+0200) Subject: Regression: fix call to __init__ of parent of CTRexClientCfg_Test, which skips not... X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=32366ab4524073ab59e59fc9895b0b2d5a73b438;p=trex.git Regression: fix call to __init__ of parent of CTRexClientCfg_Test, which skips not supported modes Change-Id: Ib9a26496f8c1ca64e5ffa4c0e668c6e15c7116fd Signed-off-by: Yaroslav Brustinov --- diff --git a/scripts/automation/regression/stateful_tests/trex_client_cfg_test.py b/scripts/automation/regression/stateful_tests/trex_client_cfg_test.py index a1e462e5..45113cab 100644 --- a/scripts/automation/regression/stateful_tests/trex_client_cfg_test.py +++ b/scripts/automation/regression/stateful_tests/trex_client_cfg_test.py @@ -12,8 +12,7 @@ from nose.tools import nottest class CTRexClientCfg_Test(CTRexNbar_Test): """This class defines the IMIX testcase of the TRex traffic generator""" def __init__(self, *args, **kwargs): - # super(CTRexClientCfg_Test, self).__init__() - CTRexGeneral_Test.__init__(self, *args, **kwargs) + CTRexNbar_Test.__init__(self, *args, **kwargs) def setUp(self): if CTRexScenario.setup_name == 'kiwi02':