From: Paul Vinciguerra Date: Mon, 2 Dec 2019 18:12:56 +0000 (-0500) Subject: tests: Revert "Python Tests: Make VppTestCase unit testable." X-Git-Tag: v20.05-rc0~256 X-Git-Url: https://gerrit.fd.io/r/gitweb?p=vpp.git;a=commitdiff_plain;h=8b2fffd93f5f42ae35b0843c8a95681a13c84e90 tests: Revert "Python Tests: Make VppTestCase unit testable." Type: test This reverts commit 087c811b63aa6b0575149749e188bb37e7fb0513. Change-Id: Ica12597f27d5a75c33c12c2d27a227dc4866adcb Signed-off-by: Paul Vinciguerra --- diff --git a/test/framework.py b/test/framework.py index 80e66a25549..cffad835b5a 100644 --- a/test/framework.py +++ b/test/framework.py @@ -1172,11 +1172,6 @@ class VppTestCase(unittest.TestCase): return rx - def runTest(self): - """ unittest calls runTest when TestCase is instantiated without a - test case. Use case: Writing unittests against VppTestCase""" - pass - def get_testcase_doc_name(test): return getdoc(test.__class__).splitlines()[0]