Darien Raymond 7 years ago
parent
commit
ad462860e2
1 changed files with 1 additions and 1 deletions
  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 {