Skip to content

Commit 42a3ef6

Browse files
Fix typo in OpenTracing compatibility module name (#5700)
1 parent 915394f commit 42a3ef6

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

dd-trace-ot/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ excludedClassesCoverage += [
2222
"datadog.opentracing.DDTracer.DDTracerBuilder"
2323
]
2424

25-
addTestSuite('ot31CompatabilityTest')
26-
addTestSuite('ot33CompatabilityTest')
25+
addTestSuite('ot31CompatibilityTest')
26+
addTestSuite('ot33CompatibilityTest')
2727

2828
dependencies {
2929
annotationProcessor deps.autoserviceProcessor
@@ -46,17 +46,17 @@ dependencies {
4646

4747
testImplementation project(":dd-java-agent:testing")
4848

49-
ot33CompatabilityTestImplementation('io.opentracing:opentracing-api') {
49+
ot33CompatibilityTestImplementation('io.opentracing:opentracing-api') {
5050
version {
5151
strictly '0.33.0'
5252
}
5353
}
54-
ot33CompatabilityTestImplementation('io.opentracing:opentracing-util') {
54+
ot33CompatibilityTestImplementation('io.opentracing:opentracing-util') {
5555
version {
5656
strictly '0.33.0'
5757
}
5858
}
59-
ot33CompatabilityTestImplementation('io.opentracing:opentracing-noop') {
59+
ot33CompatibilityTestImplementation('io.opentracing:opentracing-noop') {
6060
version {
6161
strictly '0.33.0'
6262
}
@@ -73,7 +73,7 @@ configurations.matching({ it.name.startsWith('ot31') }).each({
7373
})
7474

7575
tasks.named("test").configure {
76-
finalizedBy "ot31CompatabilityTest", "ot33CompatabilityTest"
76+
finalizedBy "ot31CompatibilityTest", "ot33CompatibilityTest"
7777
}
7878

7979
jar {

0 commit comments

Comments
 (0)