From 20f42465d0f0d2580a271cab687e013a098cd8ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9a=20Saviot?= Date: Mon, 15 Jul 2019 15:57:02 +0200 Subject: [PATCH] [apps/tests] Put LCD data/timing limits to 0 --- apps/hardware_test/lcd_data_test_controller.h | 2 +- apps/hardware_test/lcd_timing_test_controller.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/hardware_test/lcd_data_test_controller.h b/apps/hardware_test/lcd_data_test_controller.h index 48c85ae5b..2d261b3b6 100644 --- a/apps/hardware_test/lcd_data_test_controller.h +++ b/apps/hardware_test/lcd_data_test_controller.h @@ -33,7 +33,7 @@ private: BufferTextView m_lcdDataStateView; BufferTextView m_lcdNumberPixelFailuresView; }; - static constexpr int k_errorLimit = 1; + static constexpr int k_errorLimit = 0; void runTest(); bool m_testSuccessful; ContentView m_view; diff --git a/apps/hardware_test/lcd_timing_test_controller.h b/apps/hardware_test/lcd_timing_test_controller.h index 0a2230d49..17cfbf386 100644 --- a/apps/hardware_test/lcd_timing_test_controller.h +++ b/apps/hardware_test/lcd_timing_test_controller.h @@ -34,7 +34,7 @@ private: BufferTextView m_lcdTimingStateView; BufferTextView m_lcdNumberGlyphFailuresView; }; - static constexpr int k_errorLimit = 1; + static constexpr int k_errorLimit = 0; void runTest(); bool m_testSuccessful; ContentView m_view;