Skip to content

Commit 0e0a952

Browse files
committed
Fix a warning
1 parent 391e259 commit 0e0a952

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/test/java/com/epam/reportportal/junit/utils/TestUtils.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
import com.epam.ta.reportportal.ws.model.launch.StartLaunchRS;
2727
import com.epam.ta.reportportal.ws.model.log.SaveLogRQ;
2828
import com.fasterxml.jackson.core.type.TypeReference;
29-
import com.nordstrom.automation.junit.JUnitWatcher;
3029
import io.reactivex.Maybe;
3130
import jakarta.annotation.Nonnull;
3231
import jakarta.annotation.Nullable;
@@ -60,7 +59,7 @@ public static Result runClasses(final Class<?>... testClasses) {
6059
Result results = JUnitCore.runClasses(testClasses);
6160
FinishExecutionRQ finish = new FinishExecutionRQ();
6261
finish.setEndTime(Instant.now());
63-
ofNullable(Launch.currentLaunch()).ifPresent(l->l.finish(finish));
62+
ofNullable(Launch.currentLaunch()).ifPresent(l -> l.finish(finish));
6463
return results;
6564
}
6665

0 commit comments

Comments
 (0)