Skip to content

Commit

Permalink
format code
Browse files Browse the repository at this point in the history
Signed-off-by: zane-neo <[email protected]>
  • Loading branch information
zane-neo committed Oct 16, 2024
1 parent c29a02b commit 2b3cd47
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,7 @@ private void assertPassphraseRead(String source, String expected) {
public void testInitExecutionOrder() throws Exception {
AtomicInteger order = new AtomicInteger(0);

Thread mockThread = new Thread(() -> {
assertEquals(0, order.getAndIncrement());
});
Thread mockThread = new Thread(() -> { assertEquals(0, order.getAndIncrement()); });

Node mockNode = mock(Node.class);
doAnswer(invocation -> {
Expand All @@ -160,5 +158,4 @@ public void testInitExecutionOrder() throws Exception {
assertEquals(2, order.get());
}


}

0 comments on commit 2b3cd47

Please sign in to comment.