Skip to content

Commit a6c8875

Browse files
jbduncanonsi
authored andcommitted
Fix failing test
1 parent 436a197 commit a6c8875

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ghttp/handlers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ func (g GHTTPWithGomega) VerifyProtoRepresenting(expected proto.Message) http.Ha
210210
err = proto.Unmarshal(body, actual)
211211
g.gomega.Expect(err).ShouldNot(HaveOccurred(), "Failed to unmarshal protobuf")
212212

213-
g.gomega.Expect(actual).Should(Equal(expected), "ProtoBuf Mismatch")
213+
g.gomega.Expect(proto.Equal(expected, actual)).Should(BeTrue(), "ProtoBuf Mismatch")
214214
},
215215
)
216216
}

0 commit comments

Comments
 (0)