Skip to content

Commit

Permalink
fix quality violations
Browse files Browse the repository at this point in the history
  • Loading branch information
uchitsa committed Dec 22, 2024
1 parent 4bb88a7 commit 2fe7b56
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/test/java/com/jcabi/log/VerboseProcessTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -217,12 +217,12 @@ void quietlyTerminatesLongRunningProcess() throws Exception {
start = new CountDownLatch(1);
done = new CountDownLatch(1);
new Thread(
new VerboseRunnable(
new VerboseRunnable(
() -> {
start.countDown();
process.stdoutQuietly();
done.countDown();
}
start.countDown();
process.stdoutQuietly();
done.countDown();
}
)
).start();
}
Expand Down Expand Up @@ -252,7 +252,7 @@ void stdoutQuietlyLogsErrors() {
);
}
try (VerboseProcess process = new VerboseProcess(
builder, Level.OFF, Level.WARNING
builder, Level.OFF, Level.WARNING
)) {
process.stdoutQuietly();
}
Expand Down

0 comments on commit 2fe7b56

Please sign in to comment.