@@ -4057,8 +4057,8 @@ findDefinitionAndHoverTests = let
4057
4057
, testGroup " hover" $ mapMaybe snd tests
4058
4058
, checkFileCompiles sourceFilePath $
4059
4059
expectDiagnostics
4060
- [ ( " GotoHover.hs" , [(DsError , (62 , 7 ), " Found hole: _" )])
4061
- , ( " GotoHover.hs" , [(DsError , (65 , 8 ), " Found hole: _" )])
4060
+ [ ( " GotoHover.hs" , [(DsError , (62 , 7 ), " Found hole: _" )])
4061
+ , ( " GotoHover.hs" , [(DsError , (65 , 8 ), " Found hole: _" )])
4062
4062
]
4063
4063
, testGroup " type-definition" typeDefinitionTests ]
4064
4064
@@ -4717,13 +4717,13 @@ nonLocalCompletionTests =
4717
4717
" constructor"
4718
4718
[" {-# OPTIONS_GHC -Wall #-}" , " module A where" , " f = True" ]
4719
4719
(Position 2 8 )
4720
- [ (" True" , CiConstructor , " True " , True , True , Nothing )
4720
+ [ (" True" , CiConstructor , " True" , True , True , Nothing )
4721
4721
],
4722
4722
completionTest
4723
4723
" type"
4724
4724
[" {-# OPTIONS_GHC -Wall #-}" , " module A () where" , " f :: Boo" , " f = True" ]
4725
4725
(Position 2 8 )
4726
- [ (" Bool" , CiStruct , " Bool " , True , True , Nothing )
4726
+ [ (" Bool" , CiStruct , " Bool" , True , True , Nothing )
4727
4727
],
4728
4728
completionTest
4729
4729
" qualified"
@@ -4898,7 +4898,7 @@ otherCompletionTests = [
4898
4898
-- This should be sufficient to detect that we are in a
4899
4899
-- type context and only show the completion to the type.
4900
4900
(Position 3 11 )
4901
- [(" Integer" , CiStruct , " Integer " , True , True , Nothing )],
4901
+ [(" Integer" , CiStruct , " Integer" , True , True , Nothing )],
4902
4902
4903
4903
testSession " duplicate record fields" $ do
4904
4904
void $
0 commit comments