Skip to content

Commit

Permalink
fix: removed unnecessary semicolon from QuarkusHealthCheckEnricherTes…
Browse files Browse the repository at this point in the history
…t (3618)

Signed-off-by: Jahir Gutierrez <[email protected]>
  • Loading branch information
sh4y0 committed Jan 12, 2025
1 parent 8d658ad commit 9a547d2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ void create_whenPortConfiguredViaApplicationProperties_thenUseThatPort() {
// Then
assertContainers(klb)
.extracting("livenessProbe.httpGet.port.IntVal", "readinessProbe.httpGet.port.IntVal", "startupProbe.httpGet.port.IntVal")
.containsExactly(tuple(1337, 1337, 1337));;
.containsExactly(tuple(1337, 1337, 1337));
}

private AbstractListAssert<?, List<? extends Container>, Container, ObjectAssert<Container>> assertContainers(
Expand Down

0 comments on commit 9a547d2

Please sign in to comment.