Skip to content

Commit

Permalink
Merge pull request #4640 from commercialhaskell/fix-integration-test-…
Browse files Browse the repository at this point in the history
…4101

Fix integration test for #4101
  • Loading branch information
snoyberg authored Mar 19, 2019
2 parents bc2f15a + 02eedae commit a3761bc
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion test/integration/tests/4101-dependency-tree/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,14 @@ main = do
, " │ │ └─┬ ghc-prim 0.5.1.1"
, " │ │ └── rts 1.0"
, " │ └── rts 1.0"
, " └── transformers 0.5.2.0"
, " └─┬ transformers 0.5.2.0"
, " └─┬ base 4.10.1.0"
, " ├─┬ ghc-prim 0.5.1.1"
, " │ └── rts 1.0"
, " ├─┬ integer-gmp 1.0.1.0"
, " │ └─┬ ghc-prim 0.5.1.1"
, " │ └── rts 1.0"
, " └── rts 1.0"
]
when (stdOut /= expected) $
error $ unlines [ "Expected:", expected, "Actual:", stdOut ]
Expand Down

0 comments on commit a3761bc

Please sign in to comment.