diff options
author | Sridhar K. N. Rao <sridhar.rao@spirent.com> | 2021-06-26 18:42:33 +0530 |
---|---|---|
committer | Sridhar K. N. Rao <sridhar.rao@spirent.com> | 2021-06-28 15:30:27 +0530 |
commit | 27999d960e8849ef3d689e405a5aa5cb7fe7f6b6 (patch) | |
tree | f23ef17fc75df3d87064470bd220f22913185d7c /testcases | |
parent | d5c0a03054f720da2a5ff9eba74feee57fb0296d (diff) |
BUGFIXES: From Kali pre-release testing.
Multiple bug-fixes from thorough testing.
More fixes added.
Fix for Non-BLocking
Signed-off-by: Sridhar K. N. Rao <sridhar.rao@spirent.com>
Change-Id: Idd2fb214ab6dc4eba8a834ab13ecaa29ff09445e
Diffstat (limited to 'testcases')
-rw-r--r-- | testcases/testcase.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testcases/testcase.py b/testcases/testcase.py index 40bec186..c13754bc 100644 --- a/testcases/testcase.py +++ b/testcases/testcase.py @@ -228,10 +228,10 @@ class TestCase(object): len(self._step_vnf_list)) self._vnf_list = self._vnf_ctl.get_vnfs() + self._pod_ctl = component_factory.create_pod( + self.deployment, + loader.get_pod_class()) if self._k8s: - self._pod_ctl = component_factory.create_pod( - self.deployment, - loader.get_pod_class()) self._pod_list = self._pod_ctl.get_pods() # verify enough hugepages are free to run the testcase |