Skip to content

Commit e2cfc08

Browse files
committed
spot
1 parent 075cf04 commit e2cfc08

File tree

1 file changed

+10
-4
lines changed
  • exporters/sender/okhttp/src/test/java/io/opentelemetry/exporter/sender/okhttp/internal

1 file changed

+10
-4
lines changed
Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
1-
package io.opentelemetry.exporter.sender.okhttp.internal;
1+
/*
2+
* Copyright The OpenTelemetry Authors
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
25

3-
import org.junit.jupiter.api.Test;
4-
import java.net.URI;
6+
package io.opentelemetry.exporter.sender.okhttp.internal;
57

68
import static org.assertj.core.api.AssertionsForClassTypes.assertThat;
79

10+
import java.net.URI;
11+
import org.junit.jupiter.api.Test;
12+
813
class UriResolveTest {
914

1015
@Test
1116
void resolve() {
12-
assertThat(URI.create("http://localhost:8080").resolve("path").toString()).isEqualTo("http://localhost:8080/path");
17+
assertThat(URI.create("http://localhost:8080").resolve("path").toString())
18+
.isEqualTo("http://localhost:8080/path");
1319
}
1420
}

0 commit comments

Comments
 (0)