update test expected results

This commit is contained in:
MichaelDvP
2025-10-20 12:07:49 +02:00
parent d7e916269d
commit 35c7349e5c
2 changed files with 4 additions and 4 deletions

View File

@@ -318,7 +318,7 @@ const char * run_console_command(const char * command) {
}
void console_test1() {
auto expected_response = "Log level: DEBUG";
auto expected_response = "Log level: DEBUG\n";
TEST_ASSERT_EQUAL_STRING(expected_response, run_console_command("log"));
}
@@ -329,7 +329,7 @@ void console_test2() {
void console_test3() {
// test bad command
auto expected_response = "Bad syntax. Check arguments.";
auto expected_response = "Bad syntax. Check arguments.\n";
TEST_ASSERT_EQUAL_STRING(expected_response, run_console_command("call thermostat mode bad"));
}