From 1b9dd3e06b73a5297e5641c528c5c4bf55d94793 Mon Sep 17 00:00:00 2001
From: Alexander Krotov <ilabdsf@gmail.com>
Date: Mon, 10 Sep 2018 14:28:28 +0300
Subject: [PATCH] Remove RawBlock from HTML round trip tests

---
 test/Tests/Readers/HTML.hs | 1 +
 1 file changed, 1 insertion(+)

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