Skip to content

Commit

Permalink
Fix ci tests
Browse files Browse the repository at this point in the history
  • Loading branch information
heyams committed Aug 12, 2022
1 parent 02a4440 commit e7849db
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1373,7 +1373,7 @@ void actionInsertWithExtractTest() {
SpanData resultSpan = result.get(0);

assertThat(resultSpan.getAttributes().get(AttributeKey.stringKey("httpProtocol")))
.isEqualTo("io/opentelemetry/instrumentation/api/instrumenter/http");
.isEqualTo("http");
assertThat(resultSpan.getAttributes().get(AttributeKey.stringKey("httpDomain")))
.isEqualTo("example.com");
assertThat(resultSpan.getAttributes().get(AttributeKey.stringKey("httpPath")))
Expand Down Expand Up @@ -1420,7 +1420,7 @@ void actionInsertWithExtractDuplicateTest() {
SpanData resultSpan = result.get(0);

assertThat(resultSpan.getAttributes().get(AttributeKey.stringKey("httpProtocol")))
.isEqualTo("io/opentelemetry/instrumentation/api/instrumenter/http");
.isEqualTo("http");
assertThat(resultSpan.getAttributes().get(AttributeKey.stringKey("httpDomain")))
.isEqualTo("example.com");
assertThat(resultSpan.getAttributes().get(AttributeKey.stringKey("httpPath")))
Expand Down

0 comments on commit e7849db

Please sign in to comment.