Fix details command result fixture

Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
Michael Jolley
2026-08-26 23:22:12 -05:00
parent 1791456fc3
commit e05deeff90

View File

@@ -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);