Darien Raymond hace 7 años
padre
commit
ad462860e2
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      common/serial/string_test.go

+ 1 - 1
common/serial/string_test.go

@@ -19,7 +19,7 @@ func TestToString(t *testing.T) {
 		{Value: s, String: s},
 		{Value: &s, String: s},
 		{Value: errors.New("t"), String: "t"},
-		{Value: []byte{'b', 'c'}, String: "[62,63]"},
+		{Value: []byte{'b', 'c'}, String: "[98 99]"},
 	}
 
 	for _, c := range data {