Skip to content

Commit 4337a8d

Browse files
committed
chore: use unordered_map
1 parent cf39ad3 commit 4337a8d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

google/cloud/bigtable/tests/data_integration_test.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -762,8 +762,8 @@ TEST_P(DataIntegrationTest, ClientQueryColumnFamilyWithHistory) {
762762
Value const& bigtable_val = *value_hist;
763763
using HistoryEntry = std::tuple<Timestamp, std::string>;
764764
auto history_map =
765-
bigtable_val.get<std::map<std::string, std::vector<HistoryEntry>>>();
766-
ASSERT_TRUE(history_map.ok()) << history_array.status().message();
765+
bigtable_val.get<std::unordered_map<std::string, std::vector<HistoryEntry>>>();
766+
ASSERT_TRUE(history_map.ok()) << history_map.status().message();
767767
ASSERT_EQ(history_map->size(), 2);
768768

769769
// Verify cells returned ordered from newest to oldest.

0 commit comments

Comments
 (0)