Skip to content

Commit 2ed7800

Browse files
committed
Log to stdout during psc-publish tests
This is what cabal seems to expect us to do.
1 parent 4fbebff commit 2ed7800

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/TestPscPublish.hs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,6 @@ testPackage dir = do
6060
case r of
6161
Pass _ -> pure ()
6262
other -> do
63-
hPutStrLn stderr ("psc-publish tests failed on " ++ dir ++ ":")
64-
hPutStrLn stderr (show other)
65-
exitFailure
63+
putStrLn ("psc-publish tests failed on " ++ dir ++ ":")
64+
putStrLn (show other)
65+
exitFailure

0 commit comments

Comments
 (0)