From 02eedae5366d22b1ffc69c91d7daca418fa10611 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 19 Mar 2019 16:10:17 +0200 Subject: [PATCH] Fix integration test for #4101 With the changes to the dot command, the test currently fails due to not having the dependencies of the transformers package in the expected output. this fixes the situation. --- test/integration/tests/4101-dependency-tree/Main.hs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/test/integration/tests/4101-dependency-tree/Main.hs b/test/integration/tests/4101-dependency-tree/Main.hs index bfc179e39e..5b207d5c01 100644 --- a/test/integration/tests/4101-dependency-tree/Main.hs +++ b/test/integration/tests/4101-dependency-tree/Main.hs @@ -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 ]