aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTeresa Charlin Reyes <tercha01@e127807.cambridge.arm.com>2021-10-13 12:54:26 +0100
committerTeresaARM <teresa.charlinreyes@arm.com>2021-10-14 14:08:42 +0000
commit4ec6d427f3697b090fed00b07e7c61990bb7ea31 (patch)
tree945a0a01d487cc71759cd9c7e07e1dde9d05e2dc
parentcff135bd91222dd9b01082d45d3c628a74d42ff5 (diff)
downloadarmnn-4ec6d427f3697b090fed00b07e7c61990bb7ea31.tar.gz
Fix "error: no match for ‘operator+’" in GatordMockTests
Signed-off-by: Teresa Charlin Reyes <tercha01@e127807.cambridge.arm.com> Change-Id: I0e9f5d0386613f29601db554db29d15b6bd0fff4
-rw-r--r--tests/profiling/gatordmock/tests/GatordMockTests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/profiling/gatordmock/tests/GatordMockTests.cpp b/tests/profiling/gatordmock/tests/GatordMockTests.cpp
index a206f658b4..a7afdeaffe 100644
--- a/tests/profiling/gatordmock/tests/GatordMockTests.cpp
+++ b/tests/profiling/gatordmock/tests/GatordMockTests.cpp
@@ -112,7 +112,7 @@ void WaitFor(std::function<bool()> predicate, std::string errorMsg, uint32_t tim
{
if (timeSlept >= timeout)
{
- FAIL("Timeout: " + errorMsg);
+ FAIL("Timeout: " << errorMsg);
}
std::this_thread::sleep_for(std::chrono::milliseconds(sleepTime));
timeSlept += sleepTime;