We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf7a510 commit a5c1ffbCopy full SHA for a5c1ffb
tests/Microsoft.Identity.Test.Unit/UtilTests/JsonHelperTests.cs
@@ -70,20 +70,6 @@ public void Serialize_ClientInfo()
70
JsonTestUtils.AssertJsonDeepEquals(expectedJson, actualJson);
71
}
72
73
- [TestMethod]
74
- public void Serialize_ClientInfo_WithNull()
75
- {
76
- ClientInfo clientInfo = new ClientInfo() { UniqueObjectIdentifier = "some_uid" };
77
-
78
- string actualJson = JsonHelper.SerializeToJson(clientInfo);
79
- string expectedJson = @"{
80
- ""uid"": ""some_uid"",
81
- ""utid"": null
82
- }";
83
84
- JsonTestUtils.AssertJsonDeepEquals(expectedJson, actualJson);
85
- }
86
87
[TestMethod]
88
public void Serialize_OldDictionaryTokenCache()
89
{
0 commit comments