We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7abc6db commit a9ba4d2Copy full SHA for a9ba4d2
tests/service/EditorTests.fs
@@ -99,7 +99,7 @@ let ``GetMethodsAsSymbols should return all overloads of a method as FSharpSymbo
99
| Some methods ->
100
[ for ms in methods do
101
yield ms.Symbol.DisplayName, extractCurriedParams ms ]
102
- |> List.sortBy (fun (name, parameters) -> parameters.Length, (parameters |> List.map snd ))
+ |> List.sortBy (fun (_name, parameters) -> parameters.Length, (parameters |> List.map snd ))
103
|> shouldEqual
104
[("Concat", [("values", "Collections.Generic.IEnumerable<'T>")]);
105
("Concat", [("values", "Collections.Generic.IEnumerable<string>")]);
0 commit comments