summaryrefslogtreecommitdiff
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
commitdc7bf11e534b92ce21630d07d0dc88096d7fb6f7 (patch)
tree971cc7e3c955465162133ad90062126ba518107a /test/string_lit.go
parentb614df3e168a31ebef8b814fc250ecfe63409d29 (diff)
downloadgo-dc7bf11e534b92ce21630d07d0dc88096d7fb6f7.tar.gz
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 18f539dce..e9e7cff23 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.