aboutsummaryrefslogtreecommitdiff
path: root/src/unicode/utf8/utf8_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/unicode/utf8/utf8_test.go')
-rw-r--r--src/unicode/utf8/utf8_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unicode/utf8/utf8_test.go b/src/unicode/utf8/utf8_test.go
index a60040ecfd..e9be4d2d63 100644
--- a/src/unicode/utf8/utf8_test.go
+++ b/src/unicode/utf8/utf8_test.go
@@ -133,7 +133,7 @@ func TestAppendRune(t *testing.T) {
t.Errorf("AppendRune(nil, %#04x) = %s, want %s", m.r, buf, m.str)
}
if buf := AppendRune([]byte("init"), m.r); string(buf) != "init"+m.str {
- t.Errorf("AppendRune(nil, %#04x) = %s, want %s", m.r, buf, "init"+m.str)
+ t.Errorf("AppendRune(init, %#04x) = %s, want %s", m.r, buf, "init"+m.str)
}
}
}