From f1c81bc72a7b28b91ce6f42b30ba26cacd15f6dd Mon Sep 17 00:00:00 2001 From: Mateusz Jablonski Date: Mon, 26 Aug 2024 14:21:39 +0200 Subject: [PATCH] test: remove printfs from tests Signed-off-by: Mateusz Jablonski --- .../execution_environment/execution_environment_tests.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/shared/test/unit_test/execution_environment/execution_environment_tests.cpp b/shared/test/unit_test/execution_environment/execution_environment_tests.cpp index 82da880263..cef761b5e0 100644 --- a/shared/test/unit_test/execution_environment/execution_environment_tests.cpp +++ b/shared/test/unit_test/execution_environment/execution_environment_tests.cpp @@ -641,8 +641,6 @@ TEST(ExecutionEnvironment, givenExecutionEnvironmentWhenSetErrorDescriptionIsCal EXPECT_NE(0, result); executionEnvironment.getErrorDescription(&pStr); std::string expectedString = errorString2; - printf("the received string is: \"%s\"\n", pStr); - printf("the expected string is: \"%s\"\n", expectedString.c_str()); EXPECT_EQ(0, strcmp(expectedString.c_str(), pStr)); }