diff options
author | Alexander Krotov <ilabdsf@gmail.com> | 2018-09-10 14:28:28 +0300 |
---|---|---|
committer | Alexander Krotov <ilabdsf@gmail.com> | 2018-09-10 14:28:28 +0300 |
commit | 1b9dd3e06b73a5297e5641c528c5c4bf55d94793 (patch) | |
tree | b4fae5f8e87746e0f88a6878b40b95e99fba4689 /test | |
parent | 4467fe6d387e549db136d97510eb272880471908 (diff) | |
download | pandoc-1b9dd3e06b73a5297e5641c528c5c4bf55d94793.tar.gz |
Remove RawBlock from HTML round trip tests
Diffstat (limited to 'test')
-rw-r--r-- | test/Tests/Readers/HTML.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/Tests/Readers/HTML.hs b/test/Tests/Readers/HTML.hs index 0a6302c1e..72f90cabd 100644 --- a/test/Tests/Readers/HTML.hs +++ b/test/Tests/Readers/HTML.hs @@ -23,6 +23,7 @@ makeRoundTrip :: Block -> Block makeRoundTrip Table{} = Para [Str "table was here"] makeRoundTrip CodeBlock{} = Para [Str "code block was here"] makeRoundTrip LineBlock{} = Para [Str "line block was here"] +makeRoundTrip RawBlock{} = Para [Str "raw block was here"] makeRoundTrip x = x removeRawInlines :: Inline -> Inline |