Skip to content

Commit

Permalink
Merge pull request #12811 from hexfusion/cp-8469-release-3.2
Browse files Browse the repository at this point in the history
Manual cherry pick of #8469
  • Loading branch information
hexfusion committed Mar 28, 2021
2 parents 8ce82ff + 7ec9c48 commit 7dc07f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/pbutil/pbutil_test.go
Expand Up @@ -24,7 +24,7 @@ func TestMarshaler(t *testing.T) {
data := []byte("test data")
m := &fakeMarshaler{data: data}
if g := MustMarshal(m); !reflect.DeepEqual(g, data) {
t.Errorf("data = %s, want %s", g, m)
t.Errorf("data = %s, want %s", g, m.data)
}
}

Expand All @@ -43,7 +43,7 @@ func TestUnmarshaler(t *testing.T) {
m := &fakeUnmarshaler{}
MustUnmarshal(m, data)
if !reflect.DeepEqual(m.data, data) {
t.Errorf("data = %s, want %s", m.data, m)
t.Errorf("data = %s, want %s", m.data, data)
}
}

Expand Down

0 comments on commit 7dc07f2

Please sign in to comment.