add missing line from prototest.AssertDeepEqual (#12645)
This commit is contained in:
parent
dcfcac433d
commit
609a83db5e
|
@ -3,11 +3,15 @@ package prototest
|
||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/golang/protobuf/proto"
|
||||||
"github.com/google/go-cmp/cmp"
|
"github.com/google/go-cmp/cmp"
|
||||||
)
|
)
|
||||||
|
|
||||||
func AssertDeepEqual(t *testing.T, x, y interface{}, opts ...cmp.Option) {
|
func AssertDeepEqual(t *testing.T, x, y interface{}, opts ...cmp.Option) {
|
||||||
t.Helper()
|
t.Helper()
|
||||||
|
|
||||||
|
opts = append(opts, cmp.Comparer(proto.Equal))
|
||||||
|
|
||||||
if diff := cmp.Diff(x, y, opts...); diff != "" {
|
if diff := cmp.Diff(x, y, opts...); diff != "" {
|
||||||
t.Fatalf("assertion failed: values are not equal\n--- expected\n+++ actual\n%v", diff)
|
t.Fatalf("assertion failed: values are not equal\n--- expected\n+++ actual\n%v", diff)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue