From 1e411ed4b8e04027f780f2204f7fe38c678356ff Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 29 Mar 2015 23:01:33 -0400 Subject: [PATCH] Tests: Corrected lexer text '\'' --- test/lexer.t.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lexer.t.cpp b/test/lexer.t.cpp index 504dd5aa7..f9bcca2a5 100644 --- a/test/lexer.t.cpp +++ b/test/lexer.t.cpp @@ -261,7 +261,7 @@ int main (int argc, char** argv) // String { "'one two'", { { "'one two'", Lexer::Type::string }, NO, NO, NO, NO }, }, { "\"three\"", { { "\"three\"", Lexer::Type::string }, NO, NO, NO, NO }, }, - { "'\\''", { { "'\\''", Lexer::Type::string }, NO, NO, NO, NO }, }, + { "'\\''", { { "'''", Lexer::Type::string }, NO, NO, NO, NO }, }, { "\"\\\"\"", { { "\"\\\"\"", Lexer::Type::string }, NO, NO, NO, NO }, }, { "\"\tfoo\t\"", { { "\"\tfoo\t\"", Lexer::Type::string }, NO, NO, NO, NO }, }, { "\"\\u20A43\"", { { "\"₤3\"", Lexer::Type::string }, NO, NO, NO, NO }, },