aboutsummaryrefslogtreecommitdiff
path: root/test/Tests/Readers/Docx.hs
diff options
context:
space:
mode:
authorJoseph C. Sible <josephcsible@users.noreply.github.com>2020-02-08 12:12:01 -0500
committerGitHub <noreply@github.com>2020-02-08 09:12:01 -0800
commit12c75701be4b87fc438be68af5658d71e5578f62 (patch)
tree74919a84c230a75219ecb90bba10b27eab438595 /test/Tests/Readers/Docx.hs
parente97a99616e05c3cfb7baea37a5b9fac7689f9b18 (diff)
downloadpandoc-12c75701be4b87fc438be68af5658d71e5578f62.tar.gz
Use <$> instead of >>= and return (#6128)
Diffstat (limited to 'test/Tests/Readers/Docx.hs')
-rw-r--r--test/Tests/Readers/Docx.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Tests/Readers/Docx.hs b/test/Tests/Readers/Docx.hs
index 4d2e0d276..840a033f5 100644
--- a/test/Tests/Readers/Docx.hs
+++ b/test/Tests/Readers/Docx.hs
@@ -92,7 +92,7 @@ testForWarningsWithOpts opts name docxFile expected =
getMedia :: FilePath -> FilePath -> IO (Maybe B.ByteString)
getMedia archivePath mediaPath = do
zf <- toArchive <$> B.readFile archivePath
- return $ findEntryByPath ("word/" ++ mediaPath) zf >>= (Just . fromEntry)
+ return $ fromEntry <$> findEntryByPath ("word/" ++ mediaPath) zf
compareMediaPathIO :: FilePath -> MediaBag -> FilePath -> IO Bool
compareMediaPathIO mediaPath mediaBag docxPath = do