1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2025-08-10 22:31:50 +02:00

Minor styling improvements - initialisms (#220)

* Minor styling improvements - initialisms

* fix typo
This commit is contained in:
Matej Gera
2019-10-23 01:12:45 +02:00
committed by rghetia
parent e4052cf674
commit cf62d12648
4 changed files with 14 additions and 13 deletions

View File

@@ -542,4 +542,4 @@ var injectB3SingleleHeader = []injectTest{
propagation.B3ParentSpanIDHeader,
},
},
}
}

View File

@@ -143,7 +143,7 @@ func TestHTTPB3Propagator_GetAllKeys(t *testing.T) {
}
}
func TestHttpB3PropagatorWithSingleHeader_GetAllKeys(t *testing.T) {
func TestHTTPB3PropagatorWithSingleHeader_GetAllKeys(t *testing.T) {
propagator := propagation.HTTPB3Propagator{true}
want := []string{
propagation.B3SingleHeader,

View File

@@ -466,7 +466,7 @@ func TestInjectCorrelationContextToHTTPReq(t *testing.T) {
}
}
func TestHttpTraceContextPropagator_GetAllKeys(t *testing.T) {
func TestHTTPTraceContextPropagator_GetAllKeys(t *testing.T) {
var propagator propagation.HTTPTraceContextPropagator
want := []string{"Traceparent", "Correlation-Context"}
got := propagator.GetAllKeys()