summaryrefslogtreecommitdiffstats
path: root/scripts/automation/regression/stateful_tests
diff options
context:
space:
mode:
authorYaroslav Brustinov <ybrustin@cisco.com>2016-10-27 09:58:16 +0200
committerYaroslav Brustinov <ybrustin@cisco.com>2016-10-27 09:58:16 +0200
commit3fb8837d4fe0d63ee42903a02a10860e4562e3b4 (patch)
tree4cc74039745ba296d05b3e017ccc9a75ac373ccc /scripts/automation/regression/stateful_tests
parent04300e5690aff199563cf69db39639d7cca32ce6 (diff)
regression: fix for python3 client test
Diffstat (limited to 'scripts/automation/regression/stateful_tests')
-rwxr-xr-xscripts/automation/regression/stateful_tests/trex_client_pkg_test.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/scripts/automation/regression/stateful_tests/trex_client_pkg_test.py b/scripts/automation/regression/stateful_tests/trex_client_pkg_test.py
index 7e7ce2b4..892be966 100755
--- a/scripts/automation/regression/stateful_tests/trex_client_pkg_test.py
+++ b/scripts/automation/regression/stateful_tests/trex_client_pkg_test.py
@@ -7,14 +7,12 @@ from nose.plugins.attrib import attr
@attr('client_package')
class CTRexClientPKG_Test(CTRexGeneral_Test):
"""This class tests TRex client package"""
- configured_dut = False
def setUp(self):
CTRexGeneral_Test.setUp(self)
- if not CTRexClientPKG_Test.configured_dut and not self.is_loopback:
+ if not self.is_loopback:
self.router.configure_basic_interfaces()
self.router.config_pbr(mode = 'config')
- CTRexClientPKG_Test.configured_dut = True
self.unzip_client_package()
def run_client_package_stf_example(self, python_version):