Skip to content

Commit

Permalink
Trailing comma is no longer present, quarkusio/quarkus#30343
Browse files Browse the repository at this point in the history
  • Loading branch information
rsvoboda committed Jan 13, 2023
1 parent 1c339bb commit e1c7bd3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class HttpServerMetricsTest {

private static final List<String> HTTP_SERVER_REQUESTS_METRICS_SUFFIX = Arrays.asList("count", "sum", "max");

private static final String HTTP_SERVER_REQUESTS_METRICS_FORMAT = "http_server_requests_seconds_%s{method=\"GET\",outcome=\"SUCCESS\",status=\"200\",uri=\"%s\",}";
private static final String HTTP_SERVER_REQUESTS_METRICS_FORMAT = "http_server_requests_seconds_%s{method=\"GET\",outcome=\"SUCCESS\",status=\"200\",uri=\"%s\"}";
private static final String PING_PONG_ENDPOINT = "/without-metrics-pingpong";

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
public class UsingMicroProfilePingPongResourceTest {

private static final String PING_PONG_ENDPOINT = "/using-microprofile-pingpong";
private static final String COUNTER_FORMAT = "simple_mp_total{scope=\"application\",} %s.0";
private static final String COUNTER_FORMAT = "simple_mp_total{scope=\"application\"} %s.0";

@Test
public void testShouldReturnCountOne() {
Expand Down

0 comments on commit e1c7bd3

Please sign in to comment.