diff options
author | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2018-12-06 07:46:13 -0800 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2018-12-20 12:43:38 +0000 |
commit | defde0f87067eb473660794cbd4a2da69fdd191d (patch) | |
tree | 41a8e78df46ab9483aaf772622e1ba1e5e2e56c1 /test/test_l2bd_multi_instance.py | |
parent | 57f170bdf9967e3f8ea6e937a70c7f86187f95a2 (diff) |
Tests: Cleanup @skip decorator.
The runnning environment is static as of module load time,
so only evalute the conditions once at module load time.
Track-by: VPP-1518
Change-Id: I73b0d17ae1ff90789e70307f168d43921829aec8
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
Diffstat (limited to 'test/test_l2bd_multi_instance.py')
-rw-r--r-- | test/test_l2bd_multi_instance.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_l2bd_multi_instance.py b/test/test_l2bd_multi_instance.py index 04ba570c21d..18967149260 100644 --- a/test/test_l2bd_multi_instance.py +++ b/test/test_l2bd_multi_instance.py @@ -460,7 +460,7 @@ class TestL2bdMultiInst(VppTestCase): # self.vapi.cli("clear trace") self.run_verify_test() - @unittest.skipUnless(running_extended_tests(), "part of extended tests") + @unittest.skipUnless(running_extended_tests, "part of extended tests") def test_l2bd_inst_05(self): """ L2BD Multi-instance test 5 - delete 5 BDs """ |