mirror of
https://github.com/XRPLF/clio.git
synced 2026-08-23 21:50:53 +00:00
@@ -289,7 +289,7 @@ TEST_F(BackendCassandraBaseTest, CreateTableWithStrings)
|
||||
EXPECT_EQ(totalRows, entries.size());
|
||||
|
||||
for (auto [hash, seq] : extract<std::string, int64_t>(results))
|
||||
EXPECT_TRUE(std::find(std::begin(entries), std::end(entries), hash) != std::end(entries));
|
||||
EXPECT_TRUE(std::ranges::find(entries, hash) != std::end(entries));
|
||||
}
|
||||
|
||||
// delete everything
|
||||
@@ -352,7 +352,7 @@ TEST_F(BackendCassandraBaseTest, BatchInsert)
|
||||
EXPECT_EQ(totalRows, entries.size());
|
||||
|
||||
for (auto [hash, seq] : extract<std::string, int64_t>(results))
|
||||
EXPECT_TRUE(std::find(std::begin(entries), std::end(entries), hash) != std::end(entries));
|
||||
EXPECT_TRUE(std::ranges::find(entries, hash) != std::end(entries));
|
||||
}
|
||||
|
||||
dropKeyspace(handle, "test");
|
||||
|
||||
Reference in New Issue
Block a user