From ee1eca307f20558c5d57142f697e5c3cdaad7244 Mon Sep 17 00:00:00 2001 From: sbiscigl Date: Fri, 14 Feb 2025 11:26:30 -0500 Subject: [PATCH] fix apline build --- tests/aws-cpp-sdk-kinesis-integration-tests/KinesisTests.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/aws-cpp-sdk-kinesis-integration-tests/KinesisTests.cpp b/tests/aws-cpp-sdk-kinesis-integration-tests/KinesisTests.cpp index 801be6ba65c..1b810edb3c1 100644 --- a/tests/aws-cpp-sdk-kinesis-integration-tests/KinesisTests.cpp +++ b/tests/aws-cpp-sdk-kinesis-integration-tests/KinesisTests.cpp @@ -215,7 +215,7 @@ TEST_F(KinesisTest, testSubscribe) ASSERT_FALSE(shards.empty()); const auto shardId = shards[0].GetShardId(); Aws::String partitionKey = "shard0Key"; // Use a consistent partition key for Shard 0 - + const Aws::Vector inputs = { "Hello, this is the first test record for Shard 0!", "Here's another test record for Shard 0!", @@ -243,7 +243,7 @@ TEST_F(KinesisTest, testSubscribe) { double elapsed_time = std::chrono::duration(t_end-t_start).count(); - SCOPED_TRACE("SetSubscribeToShardEventCallback called at time: " + std::to_string(elapsed_time) + " ms" ); + SCOPED_TRACE("SetSubscribeToShardEventCallback called at time: " + Utils::StringUtils::to_string(elapsed_time) + " ms" ); EXPECT_EQ(event.GetRecords().size(), 3u); } t_start = t_end;