Skip to content

Commit 955be75

Browse files
committed
Corrected endpoint
1 parent dcaf30f commit 955be75

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/MongoDB.Driver.Tests/Specifications/client-side-encryption/prose-tests/ClientEncryptionProseTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1446,11 +1446,11 @@ public async Task KmsRetryTest(
14461446
{
14471447
{ "region", "foo" },
14481448
{ "key", "bar" },
1449-
{ "endpoint", "127.0.0.1:9003" }
1449+
{ "endpoint", $"{endpoint}" }
14501450
},
14511451
"azure" => new BsonDocument
14521452
{
1453-
{ "keyVaultEndpoint", "127.0.0.1:9003" },
1453+
{ "keyVaultEndpoint", $"{endpoint}" },
14541454
{ "keyName", "foo" },
14551455
},
14561456
"gcp" => new BsonDocument
@@ -1459,7 +1459,7 @@ public async Task KmsRetryTest(
14591459
{ "location", "bar" },
14601460
{ "keyRing", "baz" },
14611461
{ "keyName", "qux" },
1462-
{ "endpoint", "127.0.0.1:9003" }
1462+
{ "endpoint", $"{endpoint}" }
14631463
},
14641464
_ => throw new ArgumentException(nameof(kmsProvider))
14651465
};

0 commit comments

Comments
 (0)