diff --git a/src/modules/cmdpal/Tests/Microsoft.CmdPal.JsonRpc.UnitTests/JSAdapterProxyTests.cs b/src/modules/cmdpal/Tests/Microsoft.CmdPal.JsonRpc.UnitTests/JSAdapterProxyTests.cs index baf2e86b28..3f2d745bc5 100644 --- a/src/modules/cmdpal/Tests/Microsoft.CmdPal.JsonRpc.UnitTests/JSAdapterProxyTests.cs +++ b/src/modules/cmdpal/Tests/Microsoft.CmdPal.JsonRpc.UnitTests/JSAdapterProxyTests.cs @@ -288,7 +288,7 @@ public class JSAdapterProxyTests fake.OnRequest("command/invoke", element => { invokedCommandId = element.GetProperty("commandId").GetString(); - return new JsonObject { ["Kind"] = 4 }; + return new JsonObject { ["kind"] = 4 }; }); var provider = CreateProvider(fake);