File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed
exporters/sender/okhttp/src/test/java/io/opentelemetry/exporter/sender/okhttp/internal Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change 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
68import static org .assertj .core .api .AssertionsForClassTypes .assertThat ;
79
10+ import java .net .URI ;
11+ import org .junit .jupiter .api .Test ;
12+
813class 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}
You can’t perform that action at this time.
0 commit comments