Skip to content

Commit 840ca8d

Browse files
committed
Fix ordering of completions in test
1 parent 19d4c8f commit 840ca8d

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
@@ -3598,8 +3598,8 @@ nonLocalCompletionTests =
35983598
"type"
35993599
["{-# OPTIONS_GHC -Wall #-}", "module A () where", "f :: Bo", "f = True"]
36003600
(Position 2 7)
3601-
[ ("Bounded", CiClass, "Bounded ${1:*}", True, True, Nothing),
3602-
("Bool", CiStruct, "Bool ", True, True, Nothing)
3601+
[ ("Bool", CiStruct, "Bool ", True, True, Nothing)
3602+
, ("Bounded", CiClass, "Bounded ${1:*}", True, True, Nothing)
36033603
],
36043604
completionTest
36053605
"qualified"

0 commit comments

Comments
 (0)