Index: src/pkg/encoding/json/scanner_test.go |
=================================================================== |
--- a/src/pkg/encoding/json/scanner_test.go |
+++ b/src/pkg/encoding/json/scanner_test.go |
@@ -92,7 +92,7 @@ |
t.Fatalf("Compact: %v", err) |
} |
b := buf.Bytes() |
- if bytes.Compare(b, jsonBig) != 0 { |
+ if !bytes.Equal(b, jsonBig) { |
t.Error("Compact(jsonBig) != jsonBig") |
diff(t, b, jsonBig) |
return |
@@ -118,7 +118,7 @@ |
t.Fatalf("Indent2: %v", err) |
} |
b1 := buf1.Bytes() |
- if bytes.Compare(b1, b) != 0 { |
+ if !bytes.Equal(b1, b) { |
t.Error("Indent(Indent(jsonBig)) != Indent(jsonBig)") |
diff(t, b1, b) |
return |
@@ -130,7 +130,7 @@ |
t.Fatalf("Compact: %v", err) |
} |
b1 = buf1.Bytes() |
- if bytes.Compare(b1, jsonBig) != 0 { |
+ if !bytes.Equal(b1, jsonBig) { |
t.Error("Compact(Indent(jsonBig)) != jsonBig") |
diff(t, b1, jsonBig) |
return |