[RocksJava] Integrated changes for D34857
This commit is contained in:
parent
12350115da
commit
c345d1ee88
@ -243,7 +243,7 @@ public class ColumnFamilyOptionsTest {
|
||||
ColumnFamilyOptions opt = null;
|
||||
try {
|
||||
opt = new ColumnFamilyOptions();
|
||||
boolean boolValue = rand.nextBoolean();
|
||||
final boolean boolValue = rand.nextBoolean();
|
||||
opt.setLevelCompactionDynamicLevelBytes(boolValue);
|
||||
assertThat(opt.levelCompactionDynamicLevelBytes())
|
||||
.isEqualTo(boolValue);
|
||||
|
@ -205,7 +205,7 @@ public class OptionsTest {
|
||||
Options opt = null;
|
||||
try {
|
||||
opt = new Options();
|
||||
boolean boolValue = rand.nextBoolean();
|
||||
final boolean boolValue = rand.nextBoolean();
|
||||
opt.setLevelCompactionDynamicLevelBytes(boolValue);
|
||||
assertThat(opt.levelCompactionDynamicLevelBytes())
|
||||
.isEqualTo(boolValue);
|
||||
|
Loading…
Reference in New Issue
Block a user