diff --git a/code/test/components/jomjol-flowcontroll/test_flow_pp_negative.cpp b/code/test/components/jomjol-flowcontroll/test_flow_pp_negative.cpp index e33ffcfa..914fa032 100644 --- a/code/test/components/jomjol-flowcontroll/test_flow_pp_negative.cpp +++ b/code/test/components/jomjol-flowcontroll/test_flow_pp_negative.cpp @@ -109,7 +109,7 @@ void testNegative_Issues() { setAllowNegatives(underTestPost, false); setPreValue(underTestPost, preValue_extended); std::string result = process_doFlow(underTestPost); - TEST_ASSERT_EQUAL_STRING("Neg. Rate - Read: - Raw: 22017.98 - Pre: 22018.08 ", underTestPost->getReadoutError().c_str()); + TEST_ASSERT_EQUAL_STRING("Neg. Rate - Read: - Raw: 22017.98 - Pre: 22018.09 ", underTestPost->getReadoutError().c_str()); // if negativ no result any more TEST_ASSERT_EQUAL_STRING("", result.c_str()); diff --git a/code/test/test_suite_flowcontroll.cpp b/code/test/test_suite_flowcontroll.cpp index f399fb29..b1643c26 100644 --- a/code/test/test_suite_flowcontroll.cpp +++ b/code/test/test_suite_flowcontroll.cpp @@ -151,12 +151,12 @@ extern "C" void app_main() { initGPIO(); Init_NVS_SDCard(); - esp_log_level_set("*", ESP_LOG_DEBUG); // set all components to ERROR level + esp_log_level_set("*", ESP_LOG_ERROR); // set all components to ERROR level UNITY_BEGIN(); RUN_TEST(testNegative_Issues); RUN_TEST(testNegative); - /* + RUN_TEST(test_analogToDigit_Standard); RUN_TEST(test_analogToDigit_Transition); RUN_TEST(test_doFlowPP); @@ -167,6 +167,6 @@ extern "C" void app_main() // getReadoutRawString test RUN_TEST(test_getReadoutRawString); - */ + UNITY_END(); }