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 202a3d0 commit cc5a169Copy full SHA for cc5a169
test/Lsp.Integration.Tests/TypedCompletionTests.cs
@@ -228,7 +228,8 @@ public async Task Should_Resolve_With_Partial_Data_Capability()
228
}
229
);
230
231
- var item = await client.RequestCompletion(new CompletionParams()).SelectMany(z => z).Take(1).ToTask(CancellationToken);
+ var completionList = await client.RequestCompletion(new CompletionParams());
232
+ var item = completionList.First();
233
234
item = await client.ResolveCompletion(item);
235
item.Detail.Should().Be("resolved");
0 commit comments