diff --git a/Tools/LogAnalyzer/tests/TestBrownout.py b/Tools/LogAnalyzer/tests/TestBrownout.py index e10438a92e..56b4f2a76a 100644 --- a/Tools/LogAnalyzer/tests/TestBrownout.py +++ b/Tools/LogAnalyzer/tests/TestBrownout.py @@ -14,8 +14,8 @@ class TestBrownout(Test): self.result = TestResult() self.result.status = TestResult.StatusType.GOOD - isArmed = False - # FIXME: cope with LOG_ARM_DISARM_MSG message + isArmed = False + # FIXME: cope with LOG_ARM_DISARM_MSG message if "EV" in logdata.channels: # step through the arm/disarm events in order, to see if they're symmetrical # note: it seems landing detection isn't robust enough to rely upon here, so we'll only consider arm+disarm, not takeoff+land diff --git a/Tools/LogAnalyzer/tests/TestEvents.py b/Tools/LogAnalyzer/tests/TestEvents.py index 3dab368308..b605846811 100644 --- a/Tools/LogAnalyzer/tests/TestEvents.py +++ b/Tools/LogAnalyzer/tests/TestEvents.py @@ -21,30 +21,30 @@ class TestEvents(Test): for i in range(len(logdata.channels["ERR"]["Subsys"].listData)): subSys = logdata.channels["ERR"]["Subsys"].listData[i][1] eCode = logdata.channels["ERR"]["ECode"].listData[i][1] - if subSys == 2 and (eCode == 1): + if subSys == 2 and (eCode == 1): errors.add("PPM") - elif subSys == 3 and (eCode == 1 or eCode == 2): + elif subSys == 3 and (eCode == 1 or eCode == 2): errors.add("COMPASS") - elif subSys == 5 and (eCode == 1): + elif subSys == 5 and (eCode == 1): errors.add("FS_THR") - elif subSys == 6 and (eCode == 1): + elif subSys == 6 and (eCode == 1): errors.add("FS_BATT") - elif subSys == 7 and (eCode == 1): + elif subSys == 7 and (eCode == 1): errors.add("GPS") - elif subSys == 8 and (eCode == 1): + elif subSys == 8 and (eCode == 1): errors.add("GCS") elif subSys == 9 and (eCode == 1 or eCode == 2): errors.add("FENCE") elif subSys == 10: errors.add("FLT_MODE") - elif subSys == 11 and (eCode == 2): + elif subSys == 11 and (eCode == 2): errors.add("GPS_GLITCH") - elif subSys == 12 and (eCode == 1): + elif subSys == 12 and (eCode == 1): errors.add("CRASH") if errors: - if len(errors) == 1 and "FENCE" in errors: - self.result.status = TestResult.StatusType.WARN + if len(errors) == 1 and "FENCE" in errors: + self.result.status = TestResult.StatusType.WARN else: self.result.status = TestResult.StatusType.FAIL if len(errors) == 1: diff --git a/Tools/LogAnalyzer/tests/TestGPSGlitch.py b/Tools/LogAnalyzer/tests/TestGPSGlitch.py index 23a50f3533..9195171b60 100644 --- a/Tools/LogAnalyzer/tests/TestGPSGlitch.py +++ b/Tools/LogAnalyzer/tests/TestGPSGlitch.py @@ -25,9 +25,9 @@ class TestGPSGlitch(Test): for i in range(len(logdata.channels["ERR"]["Subsys"].listData)): subSys = logdata.channels["ERR"]["Subsys"].listData[i][1] eCode = logdata.channels["ERR"]["ECode"].listData[i][1] - if subSys == 11 and (eCode == 2): + if subSys == 11 and (eCode == 2): gpsGlitchCount += 1 - if gpsGlitchCount: + if gpsGlitchCount: self.result.status = TestResult.StatusType.FAIL self.result.statusMessage = "GPS glitch errors found (%d)" % gpsGlitchCount