Skip to content

Commit 2c4787f

Browse files
committed
fix compilation failures
1 parent 92a1bdb commit 2c4787f

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

http/grpc/src/test/java/io/quarkus/ts/http/grpc/GrpcEnumIT.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package io.quarkus.ts.http.grpc;
22

3-
import static org.junit.Assert.assertEquals;
3+
import static org.junit.jupiter.api.Assertions.assertEquals;
44
import static org.junit.jupiter.api.Assertions.assertTrue;
55

66
import org.jboss.logging.Logger;
@@ -50,7 +50,6 @@ public void testServerSideEnumLoggingInNativeMode() {
5050

5151
assertEquals("logging-test", response.getName());
5252
assertEquals(DemoEnum.B, response.getEnum());
53-
5453
}
5554
}
5655
}

service-discovery/stork-custom/src/test/java/io/quarkus/ts/stork/custom/StorkCustomServiceDiscoveryAndLoadBalancerIT.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ protected static String getAvailablePort() {
8282
return String.valueOf(socket.getLocalPort());
8383
} catch (IOException e) {
8484
fail("Unable to find available port", e);
85+
return null;
8586
}
8687
}
8788
}

service-discovery/stork/src/test/java/io/quarkus/ts/stork/AbstractCommonTestCases.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ public static String getAvailablePort() {
3030
return String.valueOf(socket.getLocalPort());
3131
} catch (IOException e) {
3232
fail("Unable to find available port", e);
33+
return null;
3334
}
3435
}
3536
}

0 commit comments

Comments
 (0)