Skip to content

Commit 6575f22

Browse files
committed
post-review changes again
1 parent 665d142 commit 6575f22

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

instrumentation/logback/logback-appender-1.0/library/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ tasks {
155155
}
156156

157157
check {
158+
dependsOn(testing.suites)
158159
dependsOn(testStableSemconv)
159160
dependsOn(testBothSemconv)
160161
}

instrumentation/rxjava/rxjava-2.0/javaagent/src/test/java/BaseRxJava2WithSpanTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public void captureSpanForCompletedCompletable() {
6161
.hasKind(SpanKind.INTERNAL)
6262
.hasNoParent()
6363
.hasAttributesSatisfyingExactly(
64-
codeFunctionSuffixAssertions("TracedWithSpan", "completable"))));
64+
codeFunctionSuffixAssertions(".TracedWithSpan", "completable"))));
6565
}
6666

6767
@Test

instrumentation/spring/spring-webmvc/spring-webmvc-common/testing/src/main/java/io/opentelemetry/instrumentation/spring/webmvc/filter/AbstractServletFilterTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ protected List<Consumer<SpanDataAssert>> errorPageSpanAssertions(
100100
.hasKind(SpanKind.INTERNAL)
101101
.hasAttributesSatisfyingExactly(
102102
SemconvCodeStabilityUtil.codeFunctionSuffixAssertions(
103-
"BasicErrorController", "error")));
103+
".BasicErrorController", "error")));
104104
return spanAssertions;
105105
}
106106

0 commit comments

Comments
 (0)