1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2025-11-29 23:07:45 +02:00

Remove sub-package value from kv (#968)

* Remove sub-package value from kv

* Update refs to `go.opentelemetry.io/api/kv/value`

* Update Changelog
This commit is contained in:
Tyler Yahn
2020-07-24 12:25:27 -07:00
committed by GitHub
parent fd54b6c642
commit d99ac0993e
26 changed files with 239 additions and 276 deletions

View File

@@ -25,7 +25,6 @@ import (
"time"
"go.opentelemetry.io/otel/api/global"
"go.opentelemetry.io/otel/api/kv/value"
"github.com/google/go-cmp/cmp"
"google.golang.org/grpc/codes"
@@ -617,7 +616,7 @@ func TestSetSpanStatus(t *testing.T) {
func cmpDiff(x, y interface{}) string {
return cmp.Diff(x, y,
cmp.AllowUnexported(value.Value{}),
cmp.AllowUnexported(kv.Value{}),
cmp.AllowUnexported(export.Event{}))
}