Skip to content

Commit 3f20cfb

Browse files
authored
Update Microsoft.Azure.Cosmos (#33356)
1 parent 21c352f commit 3f20cfb

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/EFCore.Cosmos/EFCore.Cosmos.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
</ItemGroup>
2121

2222
<ItemGroup>
23-
<PackageReference Include="Microsoft.Azure.Cosmos" Version="3.21.0" />
23+
<PackageReference Include="Microsoft.Azure.Cosmos" Version="3.29.0" />
2424
</ItemGroup>
2525

2626
<ItemGroup>

test/EFCore.Cosmos.FunctionalTests/ConfigPatternsCosmosTest.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,9 @@ public async Task Should_throw_if_specified_region_is_wrong()
8686

8787
context.SaveChanges();
8888
});
89-
Assert.Equal("Current location is not a valid Azure region.", exception.Message);
89+
Assert.Equal(
90+
"ApplicationRegion configuration 'FakeRegion' is not a valid Azure region or the current SDK version does not recognize it. If the value represents a valid region, make sure you are using the latest SDK version.",
91+
exception.Message);
9092
}
9193

9294
[ConditionalFact]

0 commit comments

Comments
 (0)