diff options
author | John MacFarlane <jgm@berkeley.edu> | 2021-08-17 15:33:10 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2021-08-17 15:33:10 -0700 |
commit | 2e9a8935fb7e27969f7bd878899382b63cac0b3a (patch) | |
tree | 1f7f262364963c8ebedd64d2024312ba55ef1bef /test/Tests | |
parent | 8451bce6ded6b9150f5ab8ae824d99ce1919dfa9 (diff) | |
download | pandoc-2e9a8935fb7e27969f7bd878899382b63cac0b3a.tar.gz |
OOXML tests: silence warnings.
These can make the test output confusing, making people think
tests are failing when they're passing.
Diffstat (limited to 'test/Tests')
-rw-r--r-- | test/Tests/Writers/OOXML.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/Tests/Writers/OOXML.hs b/test/Tests/Writers/OOXML.hs index 56a27a4b8..f2957f7a6 100644 --- a/test/Tests/Writers/OOXML.hs +++ b/test/Tests/Writers/OOXML.hs @@ -84,6 +84,7 @@ testArchive writerFn opts fp = do txt <- T.readFile fp bs <- runIOorExplode $ do setTranslations "en-US" + setVerbosity ERROR -- otherwise test output is confusingly noisy readNative def txt >>= writerFn opts return $ toArchive bs |