Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/aspnet/MessagePack-CSharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorneuecc <ils@neue.cc>2017-10-13 17:17:52 +0300
committerneuecc <ils@neue.cc>2017-10-13 17:17:52 +0300
commitb5dcdb2e0341f1478a0a191bafc80a2630e6846d (patch)
treed81d6b5f18a0cab0dbad37707a3a47e761bc2f82
parent4a57e6d87b1cf23cf878df60cf0d69c51152b5d2 (diff)
test more more
-rw-r--r--tests/MessagePack.Tests/AllowPrivateTest.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/MessagePack.Tests/AllowPrivateTest.cs b/tests/MessagePack.Tests/AllowPrivateTest.cs
index 8d6849de..f205a011 100644
--- a/tests/MessagePack.Tests/AllowPrivateTest.cs
+++ b/tests/MessagePack.Tests/AllowPrivateTest.cs
@@ -205,7 +205,7 @@ namespace MessagePack.Tests
public void Empty()
{
var x = MessagePackSerializer.Serialize(new EmptyConstructorStruct { X = 99 }, StandardResolverAllowPrivate.Instance);
- MessagePackSerializer.Deserialize<EmptyConstructorStruct>(x, StandardResolverAllowPrivate.Instance);
+ MessagePackSerializer.Deserialize<EmptyConstructorStruct>(x, StandardResolverAllowPrivate.Instance).X.Is(99);
}
}
}