Skip to content

Commit b6a751d

Browse files
made tests compile
1 parent 4519fd9 commit b6a751d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Lsp.Tests/Capabilities/Client/ClientCapabilitiesTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public void SimpleTest(string expected)
5454
WillSaveWaitUntil = true
5555
}
5656
},
57-
Workspace = new WorkspaceClientCapabilites() {
57+
Workspace = new WorkspaceClientCapabilities() {
5858
ApplyEdit = true,
5959
WorkspaceEdit = new WorkspaceEditCapability() { DocumentChanges = true },
6060
DidChangeConfiguration = new DidChangeConfigurationCapability() { DynamicRegistration = true },
@@ -75,7 +75,7 @@ public void SimpleTest(string expected)
7575
public void Github_Issue_75(string expected)
7676
{
7777
Action a = () => JObject.Parse(expected).ToObject(typeof(ClientCapabilities), new Serializer(ClientVersion.Lsp3).JsonSerializer);
78-
a.ShouldNotThrow();
78+
a.Should().NotThrow();
7979
}
8080
}
8181
}

0 commit comments

Comments
 (0)