Skip to content

Commit 666f95c

Browse files
authored
Fix the typo in test names (#7369)
- `Observabilty` ->`Observability`
1 parent 1298533 commit 666f95c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exporters/stdout/stdouttrace/internal/observ/instrumentation_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ func (m *errMeter) Float64Histogram(string, ...mapi.Float64HistogramOption) (map
5959
return nil, m.err
6060
}
6161

62-
func TestNewInstrumentationObservabiltyErrors(t *testing.T) {
62+
func TestNewInstrumentationObservabilityErrors(t *testing.T) {
6363
orig := otel.GetMeterProvider()
6464
t.Cleanup(func() { otel.SetMeterProvider(orig) })
6565
mp := &errMeterProvider{err: assert.AnError}
@@ -75,7 +75,7 @@ func TestNewInstrumentationObservabiltyErrors(t *testing.T) {
7575
assert.ErrorContains(t, err, "operation duration metric")
7676
}
7777

78-
func TestNewInstrumentationObservabiltyDisabled(t *testing.T) {
78+
func TestNewInstrumentationObservabilityDisabled(t *testing.T) {
7979
// Do not set OTEL_GO_X_OBSERVABILITY.
8080
got, err := observ.NewInstrumentation(ID)
8181
assert.NoError(t, err)

0 commit comments

Comments
 (0)