1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2025-01-30 04:40:41 +02:00

Fix test name in trace/noop pkg (#4944)

This commit is contained in:
Tyler Yahn 2024-02-19 04:57:30 -08:00 committed by GitHub
parent d423033b1f
commit 92a13d5a5e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -31,7 +31,7 @@ func TestImplementationNoPanics(t *testing.T) {
reflect.ValueOf(TracerProvider{}),
reflect.TypeOf((*trace.TracerProvider)(nil)).Elem(),
))
t.Run("Meter", assertAllExportedMethodNoPanic(
t.Run("Tracer", assertAllExportedMethodNoPanic(
reflect.ValueOf(Tracer{}),
reflect.TypeOf((*trace.Tracer)(nil)).Elem(),
))