test: remove printfs from tests

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2024-08-26 14:21:39 +02:00
committed by Compute-Runtime-Automation
parent cda6a8d12c
commit f1c81bc72a

View File

@@ -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));
}