diff options
author | Robert Griesemer <gri@golang.org> | 2009-11-04 10:58:30 -0800 |
---|---|---|
committer | Robert Griesemer <gri@golang.org> | 2009-11-04 10:58:30 -0800 |
commit | cf77ce6a198e50aca51a88455a8a32506f8c9b2f (patch) | |
tree | 706ec7233c89e053a9b64657885e5696507cdeb0 | |
parent | d18bfb84f89a3a8540b0b4c056842dd64078b21e (diff) | |
download | golang-cf77ce6a198e50aca51a88455a8a32506f8c9b2f.tar.gz |
fix bufio test case
R=rsc
http://go/go-review/1018038
-rw-r--r-- | src/pkg/bufio/bufio_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/bufio/bufio_test.go b/src/pkg/bufio/bufio_test.go index 32312fde5..129e214d5 100644 --- a/src/pkg/bufio/bufio_test.go +++ b/src/pkg/bufio/bufio_test.go @@ -211,7 +211,7 @@ var segmentList = [][]string { []string{""}, []string{"日", "本語"}, []string{"\u65e5", "\u672c", "\u8a9e"}, - []string{"\U000065e5, "", \U0000672c", "\U00008a9e"}, + []string{"\U000065e5", "\U0000672c", "\U00008a9e"}, []string{"\xe6", "\x97\xa5\xe6", "\x9c\xac\xe8\xaa\x9e"}, []string{"Hello", ", ", "World", "!"}, []string{"Hello", ", ", "", "World", "!"}, |