diff options
author | 2017-01-12 15:38:28 +0200 | |
---|---|---|
committer | 2017-01-12 15:38:28 +0200 | |
commit | 32366ab4524073ab59e59fc9895b0b2d5a73b438 (patch) | |
tree | effec1be55d38b54d8186078d5ab3d89c71c4ea1 /scripts | |
parent | 339b1f9d68507b0f82fe8a75b5570ba42b2e1279 (diff) |
Regression: fix call to __init__ of parent of CTRexClientCfg_Test, which skips not supported modes
Change-Id: Ib9a26496f8c1ca64e5ffa4c0e668c6e15c7116fd
Signed-off-by: Yaroslav Brustinov <ybrustin@cisco.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/automation/regression/stateful_tests/trex_client_cfg_test.py | 3 |
1 files changed, 1 insertions, 2 deletions
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': |