From f5b00f893f7b2acda46f9be86cda7362d12f58a7 Mon Sep 17 00:00:00 2001 From: koubaa Date: Tue, 10 Dec 2024 10:36:20 -0600 Subject: [PATCH] fix c++ test Signed-off-by: koubaa --- test/TestAsyncOperations.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/TestAsyncOperations.cpp b/test/TestAsyncOperations.cpp index 92ec664b..9caeaed8 100644 --- a/test/TestAsyncOperations.cpp +++ b/test/TestAsyncOperations.cpp @@ -79,7 +79,7 @@ TEST(TestAsyncOperations, TestManagerParallelExecution) EXPECT_EQ(inputsSyncB[i]->vector(), resultSync); } - kp::Manager mgrAsync(0, { 0, 2 }); + kp::Manager mgrAsync(0, std::vector{ 0, 2 }); std::vector> inputsAsyncB;