From 18b1f32466a0bbe2ccfe98c77e7b831282d819f1 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 4 Jul 2015 10:35:53 -0400 Subject: [PATCH] Test: Removed unsupported feature from lexer test --- test/lexer.t.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/lexer.t.cpp b/test/lexer.t.cpp index 515d7c294..bbc30bd40 100644 --- a/test/lexer.t.cpp +++ b/test/lexer.t.cpp @@ -36,7 +36,7 @@ Context context; //////////////////////////////////////////////////////////////////////////////// int main (int argc, char** argv) { - UnitTest t (818); + UnitTest t (806); std::vector > tokens; std::string token; @@ -213,8 +213,6 @@ int main (int argc, char** argv) { "+tag", { { "+tag", Lexer::Type::tag }, NO, NO, NO, NO }, }, { "-tag", { { "-tag", Lexer::Type::tag }, NO, NO, NO, NO }, }, { "+@tag", { { "+@tag", Lexer::Type::tag }, NO, NO, NO, NO }, }, - { "+'tag 1'", { { "+tag 1", Lexer::Type::tag }, NO, NO, NO, NO }, }, - { "'+tag 1'", { { "+tag 1", Lexer::Type::tag }, NO, NO, NO, NO }, }, // Path { "/long/path/to/file.txt", { { "/long/path/to/file.txt", Lexer::Type::path }, NO, NO, NO, NO }, },