We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e8cd84 commit c08133eCopy full SHA for c08133e
affinity/src/test/java/net/openhft/affinity/BootClassPathTest.java
@@ -6,7 +6,9 @@
6
7
public class BootClassPathTest {
8
@Test
9
- public void shouldDetectClassesOnClassPath() throws Exception {
+ public void shouldDetectClassesOnClassPath() {
10
+ if (!System.getProperty("java.version").startsWith("1.8"))
11
+ return;
12
assertTrue(BootClassPath.INSTANCE.has("java.lang.Thread"));
13
assertTrue(BootClassPath.INSTANCE.has("java.lang.Runtime"));
14
}
0 commit comments