Skip to content

Commit a9ba4d2

Browse files
author
7sharp9
committed
Corrected name of unused parameter
1 parent 7abc6db commit a9ba4d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/service/EditorTests.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ let ``GetMethodsAsSymbols should return all overloads of a method as FSharpSymbo
9999
| Some methods ->
100100
[ for ms in methods do
101101
yield ms.Symbol.DisplayName, extractCurriedParams ms ]
102-
|> List.sortBy (fun (name, parameters) -> parameters.Length, (parameters |> List.map snd ))
102+
|> List.sortBy (fun (_name, parameters) -> parameters.Length, (parameters |> List.map snd ))
103103
|> shouldEqual
104104
[("Concat", [("values", "Collections.Generic.IEnumerable<'T>")]);
105105
("Concat", [("values", "Collections.Generic.IEnumerable<string>")]);

0 commit comments

Comments
 (0)