From 90bd4663d69ba4158f7528ef128f78f82d56f1bb Mon Sep 17 00:00:00 2001 From: Kingcean Date: Fri, 20 Jan 2023 11:24:45 +0800 Subject: [PATCH] Update unit test. --- UnitTest/Reflection/SingletonUnitTest.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/UnitTest/Reflection/SingletonUnitTest.cs b/UnitTest/Reflection/SingletonUnitTest.cs index dbf644c..f299e7a 100644 --- a/UnitTest/Reflection/SingletonUnitTest.cs +++ b/UnitTest/Reflection/SingletonUnitTest.cs @@ -85,7 +85,6 @@ public void TestFactory() var json = jsonFactory.Create("obj"); Assert.AreEqual(JsonValueKind.Object, json.ValueKind); Assert.AreEqual(JsonValueKind.Array, jsonFactory.Create("arr").ValueKind); - Assert.AreNotEqual(json.ValueKind, jsonFactory.Create("obj").ValueKind); } } }