File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5280,21 +5280,21 @@ completionDocTests =
5280
5280
[ " module A where"
5281
5281
, " foo = od"
5282
5282
]
5283
- let expected = " *Imported from 'Prelude'*\n * * *\n [Documentation](file: "
5283
+ let expected = " *Imported from 'Prelude'*\n * * *\n "
5284
5284
test doc (Position 1 8 ) " odd" (Just $ T. length expected) [expected]
5285
5285
, broken $ testSession " extern single line doc without '\\ n'" $ do
5286
5286
doc <- createDoc " A.hs" " haskell" $ T. unlines
5287
5287
[ " module A where"
5288
5288
, " foo = no"
5289
5289
]
5290
- let expected = " *Imported from 'Prelude'*\n * * *\n\n\n Boolean \" not\"\n * * *\n [Documentation](file: "
5290
+ let expected = " *Imported from 'Prelude'*\n * * *\n\n\n Boolean \" not\"\n * * *\n "
5291
5291
test doc (Position 1 8 ) " not" (Just $ T. length expected) [expected]
5292
5292
, broken $ testSession " extern mulit line doc" $ do
5293
5293
doc <- createDoc " A.hs" " haskell" $ T. unlines
5294
5294
[ " module A where"
5295
5295
, " foo = i"
5296
5296
]
5297
- let expected = " *Imported from 'Prelude'*\n * * *\n\n\n Identity function. \n ```haskell\n id x = x\n ```\n * * *\n [Documentation](file: "
5297
+ let expected = " *Imported from 'Prelude'*\n * * *\n\n\n Identity function. \n ```haskell\n id x = x\n ```\n * * *\n "
5298
5298
test doc (Position 1 7 ) " id" (Just $ T. length expected) [expected]
5299
5299
]
5300
5300
where
You can’t perform that action at this time.
0 commit comments