Skip to content
This repository was archived by the owner on Feb 6, 2026. It is now read-only.

Commit 78e9622

Browse files
authored
Fix casing in app-config live test (#101)
1 parent 5cf937c commit 78e9622

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/AzureMcp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
<PackageReference Include="ModelContextProtocol" />
5959
<PackageReference Include="ModelContextProtocol.AspNetCore" />
6060
<PackageReference Include="Microsoft.Extensions.Caching.Memory" />
61-
<PackageReference Include="Microsoft.Azure.Cosmos" GeneratePathProperty="true" ExcludeAssets="runtime;native" />
61+
<PackageReference Include="Microsoft.Azure.Cosmos" GeneratePathProperty="true" ExcludeAssets="native" />
6262
<PackageReference Include="Microsoft.Extensions.DependencyInjection" />
6363
<PackageReference Include="Microsoft.Extensions.Hosting" />
6464
<PackageReference Include="Newtonsoft.Json" />

tests/Client/AppConfigCommandTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ public async Task Should_show_appconfig_kv()
248248
var setting = result.AssertProperty("setting");
249249
Assert.Equal(JsonValueKind.Object, setting.ValueKind);
250250

251-
var value = setting.AssertProperty("Value");
251+
var value = setting.AssertProperty("value");
252252
Assert.Equal(JsonValueKind.String, value.ValueKind);
253253
Assert.Equal("foo-value", value.GetString());
254254
}

0 commit comments

Comments
 (0)