1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-07 16:59:22 +00:00

oeqa/core/runner: OETestResult remove unneeded override of startTest

I override this method before for keep track of results and forget
to remove it, now isn't need.

(From OE-Core rev: 63606ffaaac1b84ddcad8a1c1006f8110050e20e)

Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Aníbal Limón
2017-05-26 15:37:31 -05:00
committed by Richard Purdie
parent 5507c394e7
commit c7600278b6
-3
View File
@@ -44,9 +44,6 @@ class OETestResult(_TestResult):
self.tc._results['skipped'] = self.skipped
self.tc._results['expectedFailures'] = self.expectedFailures
def startTest(self, test):
super(OETestResult, self).startTest(test)
class OETestRunner(_TestRunner):
streamLoggerClass = OEStreamLogger