pb.Equal fix (#1304)

* pb.Equal fix

* file capitalization

* oh snake case
This commit is contained in:
Bill Thorp 2019-02-13 09:08:57 -05:00 committed by GitHub
parent ad95d881c7
commit 2c5716e874
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,7 +32,7 @@ func Equal(msg1, msg2 proto.Message) bool {
if err != nil {
return false
}
msg2Bytes, err := proto.Marshal(msg1)
msg2Bytes, err := proto.Marshal(msg2)
if err != nil {
return false
}