Skip to content

Commit 2c11aa0

Browse files
committed
Fix tests
1 parent b6e288e commit 2c11aa0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ghcide/test/exe/Main.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3367,7 +3367,7 @@ exportUnusedTests = testGroup "export unused actions"
33673367
"Export ‘bar’"
33683368
(Just $ T.unlines
33693369
[ "{-# OPTIONS_GHC -Wunused-top-binds #-}"
3370-
, "module A (foo,bar) where"
3370+
, "module A (foo, bar) where"
33713371
, "foo = id"
33723372
, "bar = foo"])
33733373
, testSession "multi line explicit exports" $ template
@@ -3384,7 +3384,7 @@ exportUnusedTests = testGroup "export unused actions"
33843384
[ "{-# OPTIONS_GHC -Wunused-top-binds #-}"
33853385
, "module A"
33863386
, " ("
3387-
, " foo,bar) where"
3387+
, " foo, bar) where"
33883388
, "foo = id"
33893389
, "bar = foo"])
33903390
, testSession "export list ends in comma" $ template

0 commit comments

Comments
 (0)