From e05deeff907b038f723a2e354923b46a01a92fed Mon Sep 17 00:00:00 2001 From: Michael Jolley Date: Wed, 26 Aug 2026 23:22:12 -0500 Subject: [PATCH] Fix details command result fixture Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- .../Microsoft.CmdPal.JsonRpc.UnitTests/JSAdapterProxyTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);