Commit 7ded0d06 authored by Levin Zimmermann's avatar Levin Zimmermann

fixup! go/proto/msgpack: Fix Error -> ErrorCode is int on the wire and not extension type

parent 485d42da
......@@ -176,7 +176,7 @@ func TestMsgMarshal(t *testing.T) {
// uint32(N)/enum(M), string
{&Error{Code: 0x00000045, Message: "hello"},
"\x00\x00\x00\x45\x00\x00\x00\x05hello",
hex("92") + hex("d40245") + "\xc4\x05hello",
hex("92") + hex("45") + "\xc4\x05hello",
},
// Oid, Tid, bool, Checksum, []byte
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment