Skip to content

Commit e2f4c23

Browse files
authored
Fix typo in test code (#13445)
1 parent 6c38fcb commit e2f4c23

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

instrumentation/akka/akka-http-10.0/javaagent/src/test/scala/io/opentelemetry/javaagent/instrumentation/akkahttp/AkkaHttpTestServerSourceWebServer.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ object AkkaHttpTestServerSourceWebServer {
4949
extractUri { uri =>
5050
complete(
5151
AbstractHttpServerTest
52-
.controller(INDEXED_CHILD, supplier(uri.queryString().orNull))
52+
.controller(QUERY_PARAM, supplier(uri.queryString().orNull))
5353
)
5454
}
5555
},

instrumentation/akka/akka-http-10.0/javaagent/src/test/scala/io/opentelemetry/javaagent/instrumentation/akkahttp/AkkaHttpTestWebServer.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ object AkkaHttpTestWebServer {
4848
extractUri { uri =>
4949
complete(
5050
AbstractHttpServerTest
51-
.controller(INDEXED_CHILD, supplier(uri.queryString().orNull))
51+
.controller(QUERY_PARAM, supplier(uri.queryString().orNull))
5252
)
5353
}
5454
},

instrumentation/pekko/pekko-http-1.0/javaagent/src/test/scala/io/opentelemetry/javaagent/instrumentation/pekkohttp/v1_0/PekkoHttpTestServerSourceWebServer.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ object PekkoHttpTestServerSourceWebServer {
4747
extractUri { uri =>
4848
complete(
4949
AbstractHttpServerTest
50-
.controller(INDEXED_CHILD, supplier(uri.queryString().orNull))
50+
.controller(QUERY_PARAM, supplier(uri.queryString().orNull))
5151
)
5252
}
5353
},

instrumentation/pekko/pekko-http-1.0/javaagent/src/test/scala/io/opentelemetry/javaagent/instrumentation/pekkohttp/v1_0/PekkoHttpTestWebServer.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ object PekkoHttpTestWebServer {
4646
extractUri { uri =>
4747
complete(
4848
AbstractHttpServerTest
49-
.controller(INDEXED_CHILD, supplier(uri.queryString().orNull))
49+
.controller(QUERY_PARAM, supplier(uri.queryString().orNull))
5050
)
5151
}
5252
},

0 commit comments

Comments
 (0)