diff options
Diffstat (limited to 'test/Tests/Old.hs')
-rw-r--r-- | test/Tests/Old.hs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/Tests/Old.hs b/test/Tests/Old.hs index ba6947eda..fc5721edb 100644 --- a/test/Tests/Old.hs +++ b/test/Tests/Old.hs @@ -14,7 +14,6 @@ module Tests.Old (tests) where import Prelude import Data.Algorithm.Diff -import Prelude hiding (readFile) import Data.List (intercalate) import Data.Maybe (catMaybes) import System.Exit @@ -291,7 +290,7 @@ fb2WriterTest pandocPath title opts inputfile normfile = where formatXML xml = splitTags $ zip xml (drop 1 xml) splitTags [] = [] - splitTags [end] = fst end : snd end : [] + splitTags [end] = [fst end, snd end] splitTags (('>','<'):rest) = ">\n" ++ splitTags rest splitTags ((c,_):rest) = c : splitTags rest ignoreBinary = unlines . filter (not . startsWith "<binary ") . lines |