File tree 1 file changed +4
-5
lines changed
src/test/java/io/vertx/starter/service
1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -140,9 +140,9 @@ void afterEach() {
140
140
static void afterAll () throws Exception {
141
141
try (Stream <Path > pathStream = Files .walk (tempDir )) {
142
142
pathStream
143
- .sorted (Comparator .reverseOrder ())
144
- .map (Path ::toFile )
145
- .forEach (File ::delete );
143
+ .sorted (Comparator .reverseOrder ())
144
+ .map (Path ::toFile )
145
+ .forEach (File ::delete );
146
146
}
147
147
}
148
148
@@ -161,8 +161,7 @@ static Stream<VertxProject> testProjects() throws IOException {
161
161
.filter (version -> !version .endsWith ("-SNAPSHOT" ))
162
162
.toList ();
163
163
164
- List <Set <String >> testDeps = Arrays .asList (Collections .singleton ("vertx-unit" ),
165
- Collections .singleton ("vertx-junit5" ));
164
+ List <Set <String >> testDeps = Arrays .asList (Collections .singleton ("vertx-unit" ), Collections .singleton ("vertx-junit5" ));
166
165
167
166
Stream .Builder <VertxProject > builder = Stream .builder ();
168
167
for (BuildTool buildTool : BuildTool .values ()) {
You can’t perform that action at this time.
0 commit comments