Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions tests/ReaderTest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -852,7 +852,8 @@ TEST_F(ReaderSeekTest, testSeekInProgress) {
}

TEST_P(ReaderSeekTest, testHasMessageAvailableAfterSeekToEnd) {
const auto topic = "test-has-message-available-after-seek-to-end-" + std::to_string(time(nullptr));
const auto topic = "test-has-message-available-after-seek-to-end-" + std::to_string(time(nullptr)) +
std::to_string(GetParam());
Producer producer;
ASSERT_EQ(ResultOk, client.createProducer(topic, producer));
Reader reader;
Expand Down Expand Up @@ -980,7 +981,8 @@ TEST_F(ReaderSeekTest, testSeekInclusiveChunkMessage) {
}

TEST_P(ReaderSeekTest, testSeekToEndByTimestamp) {
auto topic = "test-seek-to-end-by-timestamp-" + std::to_string(time(nullptr));
auto topic =
"test-seek-to-end-by-timestamp-" + std::to_string(time(nullptr)) + std::to_string(GetParam());
Producer producer;
ASSERT_EQ(ResultOk, client.createProducer(topic, producer));

Expand Down
Loading