From c74307d9249f73a3ec68db4e85911b8b97d54301 Mon Sep 17 00:00:00 2001 From: Sourabh Jain Date: Wed, 15 Sep 2021 18:11:13 +0530 Subject: [PATCH] fix test --- .../tests/Microsoft.Azure.Cosmos.Tests/SettingsContractTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Microsoft.Azure.Cosmos/tests/Microsoft.Azure.Cosmos.Tests/SettingsContractTests.cs b/Microsoft.Azure.Cosmos/tests/Microsoft.Azure.Cosmos.Tests/SettingsContractTests.cs index e6526cd29a..2232fc2ffa 100644 --- a/Microsoft.Azure.Cosmos/tests/Microsoft.Azure.Cosmos.Tests/SettingsContractTests.cs +++ b/Microsoft.Azure.Cosmos/tests/Microsoft.Azure.Cosmos.Tests/SettingsContractTests.cs @@ -393,7 +393,7 @@ public void ContainerPropertiesDeserializeWithAdditionalDataTest() [TestMethod] public void ClientEncryptionKeyPropertiesDeserializeWithAdditionalDataTest() { - string cosmosSerialized = "{\"id\":\"id\",\"encryptionAlgorithmId\":\"encryptionAlgorithm\",\"wrappedDataEncryptionKey\":\"AA==\",\"keyWrapMetadata\":{\"type\":\"type\",\"name\":\"name\",\"value\":\"value\", \"additional\":\"value\"}}"; + string cosmosSerialized = "{\"id\":\"id\",\"encryptionAlgorithm\":\"encryptionAlgorithm\",\"wrappedDataEncryptionKey\":\"AA==\",\"keyWrapMetadata\":{\"type\":\"type\",\"name\":\"name\",\"value\":\"value\", \"additional\":\"value\"}}"; JObject complexObject = JObject.FromObject(new { id = 1, name = new { fname = "fname", lname = "lname" } });