Skip to content

Commit ddb063e

Browse files
committed
.
1 parent 4aec324 commit ddb063e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/FSharp.Compiler.Service.Tests/EditorTests.fs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,15 +130,15 @@ let ``GetMethodsAsSymbols should return all overloads of a method as FSharpSymbo
130130
yield ms.Symbol.DisplayName, extractCurriedParams ms ]
131131
|> List.sortBy (fun (_name, parameters) -> parameters.Length, (parameters |> List.map snd ))
132132
let expected =
133-
[("Concat", [("values", "Collections.Generic.IEnumerable<'T>")]);
134-
("Concat", [("values", "Collections.Generic.IEnumerable<string>")]);
133+
[("Concat", [("values", "'T seq")]);
135134
#if NETCOREAPP
136135
("Concat", [("args", "ReadOnlySpan<obj>")]);
137136
("Concat", [("values", "ReadOnlySpan<string>")]);
138137
#endif
139138
("Concat", [("arg0", "obj")]);
140139
("Concat", [("args", "obj array")]);
141-
("Concat", [("values", "string array")]);
140+
("Concat", [("values", "string array")])
141+
("Concat", [("values", "string seq")])
142142
#if NETCOREAPP
143143
("Concat", [("str0", "ReadOnlySpan<char>");("str1", "ReadOnlySpan<char>")]);
144144
#endif

0 commit comments

Comments
 (0)