aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--FMark/src/Common/Lexer/LexerTest.fs6
1 files changed, 3 insertions, 3 deletions
diff --git a/FMark/src/Common/Lexer/LexerTest.fs b/FMark/src/Common/Lexer/LexerTest.fs
index 6ed1132..7de338d 100644
--- a/FMark/src/Common/Lexer/LexerTest.fs
+++ b/FMark/src/Common/Lexer/LexerTest.fs
@@ -340,15 +340,15 @@ let lexTest =
"Half opened tag should just be outputted",
"<a><",
- [LITERAL "<a>"; LITERAL "<"; ENDLINE]
+ [LITERAL "<a>"; LITERAL "<"]
"Half opened with text after should be as expected",
"<a><This text should appear as normal",
- [LITERAL "<a>"; LITERAL "<This text should appear as normal"; ENDLINE]
+ [LITERAL "<a>"; LITERAL "<This text should appear as normal"]
"Wrong html close tag should be passed through",
"<p></>s",
- [LITERAL "<p>"; LITERAL "</>s"; ENDLINE]
+ [LITERAL "<p>"; LITERAL "</>s"]
]
/// Tests for the complete lexers with a string list as input