Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
rhubner committed Dec 19, 2023
1 parent d1dd13c commit 8689b80
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions java/src/test/java/org/rocksdb/MultiGetManyKeysTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import static org.assertj.core.api.Assertions.assertThat;

import java.util.*;

import org.junit.Assume;
import org.junit.BeforeClass;
import org.junit.Rule;
Expand All @@ -34,7 +33,8 @@ public MultiGetManyKeysTest(final Integer numKeys) {

@BeforeClass
public static void beforeAllTest() {
Assume.assumeFalse("We are not running this test on OpenBSD dues to memory constraints", Environment.isOpenBSD());
Assume.assumeFalse("We are not running this test on OpenBSD dues to memory constraints",
Environment.isOpenBSD());
}

/**
Expand Down
3 changes: 2 additions & 1 deletion java/src/test/java/org/rocksdb/PerfContextTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ public void testAllGetters() throws RocksDBException, IntrospectionException,

@Test
public void testGetBlockReadCpuTime() throws RocksDBException {
Assume.assumeFalse("We are not running this test on OpenBSD or Windows", Environment.isOpenBSD() || Environment.isWindows());
Assume.assumeFalse("We are not running this test on OpenBSD or Windows",
Environment.isOpenBSD() || Environment.isWindows());
db.setPerfLevel(PerfLevel.ENABLE_TIME_AND_CPU_TIME_EXCEPT_FOR_MUTEX);
db.put("key".getBytes(), "value".getBytes());
db.compactRange();
Expand Down

0 comments on commit 8689b80

Please sign in to comment.