We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0656bd1 commit 1c6d265Copy full SHA for 1c6d265
src/test/java/org/apache/commons/lang3/time/StopWatchTest.java
@@ -632,8 +632,8 @@ void testNanoSplitsWithLabel() {
632
633
// Note: On macOS the clock granularity and scheduling can cause minor deviations.
634
static void assumeNotMacOs13() {
635
- String os = System.getProperty("os.name").toLowerCase();
636
- String version = System.getProperty("os.version");
+ final String os = System.getProperty("os.name").toLowerCase();
+ final String version = System.getProperty("os.version");
637
Assumptions.assumeTrue(!(os.contains("mac") && version.startsWith("13")),
638
() -> "Skipping test on macOS 13");
639
}
0 commit comments