Skip to content

Commit 3d1ae12

Browse files
committed
spotless
1 parent 0c0d9d6 commit 3d1ae12

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

smoke-tests/apps/OpenTelemetryApiLogBridge/src/main/java/com/microsoft/applicationinsights/smoketestapp/TestController.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,4 @@ public String testCustomEvent() {
5050
.emit();
5151
return "OK!";
5252
}
53-
5453
}

smoke-tests/apps/OpenTelemetryApiLogBridge/src/smokeTest/java/com/microsoft/applicationinsights/smoketest/OpenTelemetryApiLogBridgeTest.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,7 @@ void testCustomEvent() throws Exception {
6969

7070
RequestData rd = (RequestData) ((Data<?>) rdEnvelope.getData()).getBaseData();
7171
assertThat(rd.getUrl())
72-
.matches(
73-
"http://localhost:[0-9]+/OpenTelemetryApiLogBridge/test-custom-event");
72+
.matches("http://localhost:[0-9]+/OpenTelemetryApiLogBridge/test-custom-event");
7473
assertThat(rd.getResponseCode()).isEqualTo("200");
7574
assertThat(rd.getSuccess()).isTrue();
7675
assertThat(rd.getSource()).isNull();
@@ -89,8 +88,6 @@ void testCustomEvent() throws Exception {
8988
assertThat(ed.getName()).isEqualTo("my_custom_event");
9089
}
9190

92-
93-
9491
@Environment(TOMCAT_8_JAVA_8)
9592
static class Tomcat8Java8Test extends OpenTelemetryApiLogBridgeTest {}
9693

0 commit comments

Comments
 (0)