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 62243dd commit 9974ad3Copy full SHA for 9974ad3
platform-tests/src/test/java/org/junit/platform/console/tasks/DiscoveryRequestCreatorTests.java
@@ -398,10 +398,8 @@ void doesNotLogInvalidAdditionalClasspathRoots(@TrackLogRecords LogRecordListene
398
399
DiscoveryRequestCreator.toDiscoveryRequestBuilder(opts);
400
401
- assertThat(listener.stream(DiscoveryRequestCreator.class))
402
- .map(LogRecord::getMessage)
403
- .filteredOn(msg -> msg.contains("/also/does/not/exist"))
404
- .isEmpty();
+ assertThat(listener.stream(DiscoveryRequestCreator.class)).map(LogRecord::getMessage).filteredOn(
+ msg -> msg.contains("/also/does/not/exist")).isEmpty();
405
}
406
407
private LauncherDiscoveryRequest convert() {
0 commit comments