From 4ec6d427f3697b090fed00b07e7c61990bb7ea31 Mon Sep 17 00:00:00 2001 From: Teresa Charlin Reyes Date: Wed, 13 Oct 2021 12:54:26 +0100 Subject: =?UTF-8?q?Fix=20"error:=20no=20match=20for=20=E2=80=98operator+?= =?UTF-8?q?=E2=80=99"=20in=20GatordMockTests?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Teresa Charlin Reyes Change-Id: I0e9f5d0386613f29601db554db29d15b6bd0fff4 --- tests/profiling/gatordmock/tests/GatordMockTests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 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; -- cgit v1.2.1