aboutsummaryrefslogtreecommitdiff
path: root/src/encoding/json/v2_diff_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/encoding/json/v2_diff_test.go')
-rw-r--r--src/encoding/json/v2_diff_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/encoding/json/v2_diff_test.go b/src/encoding/json/v2_diff_test.go
index 7a561732f4..9d0798ed1d 100644
--- a/src/encoding/json/v2_diff_test.go
+++ b/src/encoding/json/v2_diff_test.go
@@ -786,8 +786,8 @@ func TestInvalidUTF8(t *testing.T) {
switch {
case json.Version == "v1" && err != nil:
t.Fatalf("json.Marshal error: %v", err)
- case json.Version == "v1" && string(got) != `"\ufffd"`:
- t.Fatalf(`json.Marshal = %s, want "\ufffd"`, got)
+ case json.Version == "v1" && string(got) != "\"\ufffd\"":
+ t.Fatalf(`json.Marshal = %s, want %q`, got, "\ufffd")
case json.Version == "v2" && err == nil:
t.Fatal("json.Marshal error is nil, want non-nil")
}