about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2014-06-18 00:40:57 +0200
committerSimon Sapin <simon.sapin@exyr.org>2014-06-18 00:47:20 +0200
commit3744d828513092d1ed64c4c6f8cd2536f7a5ff0d (patch)
treead37386a7791e4bebf6bd292f42c2090d7512fa8
parent8de2618182f14bb2245e8e89f171aaf9b2f29690 (diff)
downloadrust-3744d828513092d1ed64c4c6f8cd2536f7a5ff0d.tar.gz
rust-3744d828513092d1ed64c4c6f8cd2536f7a5ff0d.zip
Fix expected error message in a test.
The change is a result of the char/string parsing refactor.
-rw-r--r--src/test/compile-fail/lex-unknown-str-escape.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/lex-unknown-str-escape.rs b/src/test/compile-fail/lex-unknown-str-escape.rs
index f7809b02b0b..9a59c422711 100644
--- a/src/test/compile-fail/lex-unknown-str-escape.rs
+++ b/src/test/compile-fail/lex-unknown-str-escape.rs
@@ -9,5 +9,5 @@
 // except according to those terms.
 
 static s: &'static str =
-    "\●" //~ ERROR: unknown string escape
+    "\●" //~ ERROR: unknown character escape
 ;