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 8e73442 commit 3c76125Copy full SHA for 3c76125
platform-tests/src/test/java/org/junit/platform/commons/support/ReflectionSupportTests.java
@@ -64,7 +64,8 @@ void tryToLoadClassDelegates() {
64
ReflectionSupport.tryToLoadClass("-").toOptional());
65
assertEquals(ReflectionUtils.tryToLoadClass("A").toOptional(),
66
ReflectionSupport.tryToLoadClass("A").toOptional());
67
- assertEquals(ReflectionUtils.tryToLoadClass("java.nio.Bits"), ReflectionSupport.tryToLoadClass("java.nio.Bits"));
+ assertEquals(ReflectionUtils.tryToLoadClass("java.nio.Bits"),
68
+ ReflectionSupport.tryToLoadClass("java.nio.Bits"));
69
}
70
71
@Test
0 commit comments