From 7d7afce5c08e1c792cd8dac262bcb65ae10e9880 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89milie=20Feral?= Date: Fri, 10 May 2019 13:42:35 +0200 Subject: [PATCH] [hardware-test] Add FastLCDData to LCD data test --- apps/hardware_test/lcd_data_test_controller.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }