Skip to content

Commit

Permalink
fix apline build
Browse files Browse the repository at this point in the history
  • Loading branch information
sbiscigl committed Feb 14, 2025
1 parent 00fb461 commit ee1eca3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/aws-cpp-sdk-kinesis-integration-tests/KinesisTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<Aws::String> inputs = {
"Hello, this is the first test record for Shard 0!",
"Here's another test record for Shard 0!",
Expand Down Expand Up @@ -243,7 +243,7 @@ TEST_F(KinesisTest, testSubscribe)
{

double elapsed_time = std::chrono::duration<double, std::milli>(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;
Expand Down

0 comments on commit ee1eca3

Please sign in to comment.