Skip to content

Commit 8fe3e0c

Browse files
committed
Correct test case
1 parent 5ef5777 commit 8fe3e0c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

plugins/hls-hlint-plugin/test/Main.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ suggestionsTests =
216216
, "-- final comment"
217217
]
218218
expectedComments2 = [ "module TwoHintsAndComment where"
219-
, "biggest items = foldr1 max -- the line above will show two hlint hints, \"eta reduce\" and \"use maximum\""
219+
, "biggest = foldr1 max -- the line above will show two hlint hints, \"eta reduce\" and \"use maximum\""
220220
]
221221
expectedTypeApp = [ "module TypeApplication where", ""
222222
, "a = id @Int 1"
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
module TwoHintsAndComments where
2-
1+
module TwoHintsAndComment where
32
biggest items = foldr1 max items -- the line above will show two hlint hints, "eta reduce" and "use maximum"

0 commit comments

Comments
 (0)