LogAnalyzer: renamed test from "Underpowered" to "Thrust"

This commit is contained in:
Andrew Chapman 2014-06-15 23:40:09 +02:00 committed by Andrew Tridgell
parent 4a5e0bbe06
commit 2f4af05f33
2 changed files with 4 additions and 4 deletions

View File

@ -338,7 +338,7 @@
<message></message>
</result>
<result>
<name>Underpowered</name>
<name>Thrust</name>
<status>GOOD</status>
<message></message>
</result>

View File

@ -2,11 +2,11 @@ from LogAnalyzer import Test,TestResult
import DataflashLog
class TestUnderpowered(Test):
'''test for underpowered copter'''
class TestThrust(Test):
'''test for sufficient thrust (copter only for now)'''
def __init__(self):
self.name = "Underpowered"
self.name = "Thrust"
def run(self, logdata, verbose):
self.result = TestResult()