Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Dec 22, 2023
1 parent a3eec4e commit 37e8e18
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/main/java/com/yegor256/WeAreOnline.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
*
* <code><pre> import com.yegor256.WeAreOnline;
* import org.junit.jupiter.api.extension.ExtendWith;
*
*
* &#64;ExtendWith(WeAreOnline.class)
* final class MyTest {
* // Your test methods
Expand All @@ -63,7 +63,10 @@ public ConditionEvaluationResult evaluateExecutionCondition(
}
} catch (final IOException ex) {
ret = ConditionEvaluationResult.disabled(
String.format("Failed to check online status: %s", ex.getMessage())
String.format(
"Failed to check online status: %s",
ex.getMessage()
)
);
}
return ret;
Expand Down

0 comments on commit 37e8e18

Please sign in to comment.