Skip to content
This repository has been archived by the owner on Sep 27, 2019. It is now read-only.

Commit

Permalink
Fix condition in tile_group_compactor test that was too strict for so…
Browse files Browse the repository at this point in the history
…me systems due to performance differences.
  • Loading branch information
mbutrovich committed Jun 12, 2018
1 parent 8eb6dbd commit 9c87209
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/gc/tile_group_compactor_test.cpp
Expand Up @@ -297,7 +297,7 @@ TEST_F(TileGroupCompactorTests, ConcurrentUpdateTest) {

// assert num live tile groups decreased
auto num_tg_now = storage_manager->GetNumLiveTileGroups();
EXPECT_EQ(num_tg_before_compaction - 1, num_tg_now);
EXPECT_LT(num_tg_now, num_tg_before_compaction);

// Compact all tile groups
for (size_t i = 0; i < table->GetTileGroupCount(); i++) {
Expand Down

0 comments on commit 9c87209

Please sign in to comment.