diff --git a/apps/hardware_test/lcd_data_test_controller.cpp b/apps/hardware_test/lcd_data_test_controller.cpp index 1d5be7c38..07147c483 100644 --- a/apps/hardware_test/lcd_data_test_controller.cpp +++ b/apps/hardware_test/lcd_data_test_controller.cpp @@ -15,7 +15,7 @@ bool LCDDataTestController::handleEvent(Ion::Events::Event event) { } void LCDDataTestController::viewWillAppear() { - bool testOK = Shared::POSTAndHardwareTests::LCDDataOK(); + bool testOK = Shared::POSTAndHardwareTests::LCDDataOK() && Shared::POSTAndHardwareTests::FastLCDDataOK(); m_view.lcdDataStateTextView()->setText(testOK ? k_lcdDataOKText : k_lcdDataFailTest); m_view.setColor(testOK ? KDColorGreen : KDColorRed); }