aboutsummaryrefslogtreecommitdiffstats
path: root/FMark
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-03-23 03:43:35 +0000
committerYann Herklotz <ymherklotz@gmail.com>2018-03-23 03:43:35 +0000
commitee3202f55a1da87b2f10c9bc4e5bbcd95176e19d (patch)
tree87adf40ae071d19671a4393ab2a14580728af39f /FMark
parentdbc9281e3e97b557d2a4d17c345cc1c38c935a5b (diff)
downloadFMark-ee3202f55a1da87b2f10c9bc4e5bbcd95176e19d.tar.gz
FMark-ee3202f55a1da87b2f10c9bc4e5bbcd95176e19d.zip
[html] Removed ENDLINE from test
Diffstat (limited to 'FMark')
-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