Codebase list pgpdump / 6118d4a
Make the haskell test driver use UTC. Turns out it was super simple and I'm just illiterate. :) Jean-Philippe Ouellet authored 8 years ago Kazu Yamamoto committed 6 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
2929 where
3030 compareThem (src,dst) = do
3131 putStrLn src
32 ss <- readProcess "../pgpdump" [src] ""
32 ss <- readProcess "../pgpdump" ["-u", src] ""
3333 ds <- readFile dst
3434 ss @?= ds
3535