Fix to_string in test

This commit is contained in:
mrambacher 2022-05-10 18:51:16 -04:00
parent 729ac68ddb
commit 49b43b01ec

View File

@ -496,7 +496,7 @@ TEST_F(EventListenerTest, MultiDBMultiListeners) {
delete db;
}
for (int d = 0; d < kNumDBs; ++d) {
ASSERT_OK(DestroyDB(dbname_ + ToString(d), options));
ASSERT_OK(DestroyDB(dbname_ + std::to_string(d), options));
}
}