Skip to content
This repository was archived by the owner on Jan 2, 2021. It is now read-only.

Commit 459347c

Browse files
committed
Fix an unreliable test
1 parent 0faba40 commit 459347c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/exe/Main.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -342,11 +342,11 @@ diagnosticTests = testGroup "diagnostics"
342342
, testSessionWait "correct reference used with hs-boot" $ do
343343
let contentB = T.unlines
344344
[ "module ModuleB where"
345-
, "import {-# SOURCE #-} ModuleA"
345+
, "import {-# SOURCE #-} ModuleA()"
346346
]
347347
let contentA = T.unlines
348348
[ "module ModuleA where"
349-
, "import ModuleB"
349+
, "import ModuleB()"
350350
, "x = 5"
351351
]
352352
let contentAboot = T.unlines

0 commit comments

Comments
 (0)