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 095c3b0 commit ca5c5b9Copy full SHA for ca5c5b9
test/JsonRpc.Tests/InputHandlerTests.cs
@@ -277,7 +277,7 @@ public async Task ShouldCancelRequest()
277
cancelDescription.Method.Returns(JsonRpcNames.CancelRequest);
278
279
var req = new Request(1, "abc", null);
280
- var cancel = new Notification(JsonRpcNames.CancelRequest, "{ \"id\": 1 }");
+ var cancel = new Notification(JsonRpcNames.CancelRequest, "{\"id\":1}");
281
reciever.IsValid(Arg.Any<JToken>()).Returns(true);
282
reciever.GetRequests(Arg.Any<JToken>())
283
.Returns(c => (new Renor[] { req, cancel }, false));
0 commit comments