Skip to content

Commit

Permalink
Fix ballerina-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
NipunaMadhushan committed Oct 11, 2023
1 parent bf3762c commit 888a0f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ballerina-tests/zipkin-server-tests/tests/test.bal
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ function testHttpCachingClientSpanTags() returns error? {
test:assertTrue(containsTag("src.function.name", httpCachingClientSpanTagKeys));
test:assertEquals(httpCachingClientSpanTags["src.function.name"], "get");
test:assertTrue(containsTag("src.module", httpCachingClientSpanTagKeys));
test:assertEquals(httpCachingClientSpanTags["src.module"], "ballerina/http:2.10.1");
test:assertEquals(httpCachingClientSpanTags["src.module"], "ballerina/http:2.10.2");
test:assertTrue(containsTag("src.object.name", httpCachingClientSpanTagKeys));
test:assertEquals(httpCachingClientSpanTags["src.object.name"], "ballerina/http/HttpCachingClient");
test:assertTrue(containsTag("src.position", httpCachingClientSpanTagKeys));
Expand Down Expand Up @@ -411,7 +411,7 @@ function testHttpClientSpanTags() returns error? {
test:assertTrue(containsTag("src.function.name", httpClientSpanTagKeys));
test:assertEquals(httpClientSpanTags["src.function.name"], "get");
test:assertTrue(containsTag("src.module", httpClientSpanTagKeys));
test:assertEquals(httpClientSpanTags["src.module"], "ballerina/http:2.10.1");
test:assertEquals(httpClientSpanTags["src.module"], "ballerina/http:2.10.2");
test:assertTrue(containsTag("src.object.name", httpClientSpanTagKeys));
test:assertEquals(httpClientSpanTags["src.object.name"], "ballerina/http/HttpClient");
test:assertTrue(containsTag("src.position", httpClientSpanTagKeys));
Expand Down

0 comments on commit 888a0f2

Please sign in to comment.