1
0
mirror of https://github.com/golang/go synced 2024-11-20 09:54:45 -07:00

fix codec test bug - uint -> uint8

R=r
OCL=33913
CL=33913
This commit is contained in:
Russ Cox 2009-08-26 16:19:59 -07:00
parent 06cac23d28
commit 26a2642fc3

View File

@ -168,7 +168,7 @@ func TestScalarEncInstructions(t *testing.T) {
{
b.Reset();
data := struct { a int8 } { 17 };
instr := &encInstr{ encInt, 6, 0, 0 };
instr := &encInstr{ encInt8, 6, 0, 0 };
state := newencoderState(b);
instr.op(instr, state, unsafe.Pointer(&data));
if !bytes.Equal(signedResult, b.Data()) {
@ -180,7 +180,7 @@ func TestScalarEncInstructions(t *testing.T) {
{
b.Reset();
data := struct { a uint8 } { 17 };
instr := &encInstr{ encUint, 6, 0, 0 };
instr := &encInstr{ encUint8, 6, 0, 0 };
state := newencoderState(b);
instr.op(instr, state, unsafe.Pointer(&data));
if !bytes.Equal(unsignedResult, b.Data()) {
@ -255,7 +255,7 @@ func TestScalarEncInstructions(t *testing.T) {
{
b.Reset();
data := struct { a uint64 } { 17 };
instr := &encInstr{ encUint, 6, 0, 0 };
instr := &encInstr{ encUint64, 6, 0, 0 };
state := newencoderState(b);
instr.op(instr, state, unsafe.Pointer(&data));
if !bytes.Equal(unsignedResult, b.Data()) {