Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Internal] Pipelines: Fixes Multi-Region CI pipeline to include env variable #4363

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Microsoft.Azure.Cosmos/tests/Microsoft.Azure.Cosmos.EmulatorTe…
…sts/ClientTests.cs

Co-authored-by: Matias Quaranta <ealsur@users.noreply.github.com>
  • Loading branch information
NaluTripician and ealsur authored Mar 20, 2024
commit 14a07919ad5025836764cd89e38cf761affbd2ef
Original file line number Diff line number Diff line change
Expand Up @@ -932,7 +932,7 @@ public async Task MultiRegionAccountTest()
string connectionString = TestCommon.GetMultiRegionConnectionString();
Assert.IsNotNull(connectionString);
Assert.Fail(connectionString[..10]);
CosmosClient cosmosClient = new CosmosClient(connectionString);
using CosmosClient cosmosClient = new CosmosClient(connectionString);
Assert.IsNotNull(cosmosClient);
AccountProperties properties = await cosmosClient.ReadAccountAsync();
Assert.IsNotNull(properties);
Expand Down