aboutsummaryrefslogtreecommitdiff
path: root/test/string_lit.go
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2009-08-17 13:30:22 -0700
committerRob Pike <r@golang.org>2009-08-17 13:30:22 -0700
commit74dd0ab670751feca69ca1aaf4db9859c5e52b41 (patch)
tree971cc7e3c955465162133ad90062126ba518107a /test/string_lit.go
parent3e804ba7a71576ec042cf7c22bf3b53b92b0eb60 (diff)
downloadgo-74dd0ab670751feca69ca1aaf4db9859c5e52b41.tar.gz
go-74dd0ab670751feca69ca1aaf4db9859c5e52b41.zip
fix up some irregular indentation
R=rsc OCL=33382 CL=33391
Diffstat (limited to 'test/string_lit.go')
-rw-r--r--test/string_lit.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/string_lit.go b/test/string_lit.go
index 18f539dce6..e9e7cff23e 100644
--- a/test/string_lit.go
+++ b/test/string_lit.go
@@ -68,14 +68,14 @@ func main() {
"\a\b\f\n\r\t\v\\\"",
"backslashes");
assert("\\a\\b\\f\\n\\r\\t\\v\\\\\\\"",
- `\a\b\f\n\r\t\v\\\"`,
+ `\a\b\f\n\r\t\v\\\"`,
"backslashes (backquote)");
assert("\x00\x53\000\xca\376S몾몾",
- "\000\123\x00\312\xFE\u0053\ubabe\U0000babe",
- "backslashes 2");
+ "\000\123\x00\312\xFE\u0053\ubabe\U0000babe",
+ "backslashes 2");
assert("\\000\\123\\x00\\312\\xFE\\u0123\\ubabe\\U0000babe",
- `\000\123\x00\312\xFE\u0123\ubabe\U0000babe`,
- "backslashes 2 (backquote)");
+ `\000\123\x00\312\xFE\u0123\ubabe\U0000babe`,
+ "backslashes 2 (backquote)");
assert("\\x\\u\\U\\", `\x\u\U\`, "backslash 3 (backquote)");
// test large runes. perhaps not the most logical place for this test.