Skip to content

Commit

Permalink
transport: use escaped string instead of int->string conversion (#3831)
Browse files Browse the repository at this point in the history
  • Loading branch information
dfawley committed Aug 20, 2020
1 parent f640ae6 commit d16bb4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/transport/http_util_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ func (s) TestDecodeEncodeGrpcMessage(t *testing.T) {
}
}

const binaryValue = string(128)
const binaryValue = "\u0080"

func (s) TestEncodeMetadataHeader(t *testing.T) {
for _, test := range []struct {
Expand Down

0 comments on commit d16bb4c

Please sign in to comment.