Skip to content

Commit

Permalink
Fix release compile
Browse files Browse the repository at this point in the history
  • Loading branch information
igorcanadi committed Sep 22, 2014
1 parent d0de413 commit 53b0039
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/options_test.cc
Expand Up @@ -177,7 +177,7 @@ TEST(OptionsTest, GetOptionsFromStringsTest) {
ASSERT_EQ(new_opt.level0_slowdown_writes_trigger, 9);
ASSERT_EQ(new_opt.level0_stop_writes_trigger, 10);
ASSERT_EQ(new_opt.max_mem_compaction_level, 11);
ASSERT_EQ(new_opt.target_file_size_base, 12);
ASSERT_EQ(new_opt.target_file_size_base, static_cast<uint64_t>(12));
ASSERT_EQ(new_opt.target_file_size_multiplier, 13);
ASSERT_EQ(new_opt.max_bytes_for_level_base, 14U);
ASSERT_EQ(new_opt.max_bytes_for_level_multiplier, 15);
Expand Down

0 comments on commit 53b0039

Please sign in to comment.