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 0aadf68 commit cd13f03Copy full SHA for cd13f03
src/DotNext.AotTests/Runtime/BoxedValueTests.cs
@@ -9,8 +9,8 @@ public void BoxUnbox()
9
var obj = (BoxedValue<int>)42;
10
// Assert.AreEqual(42.GetHashCode(), obj.GetHashCode());
11
Assert.AreEqual(42, obj.Value);
12
- Assert.AreEqual(42, (int)obj);
13
- Assert.AreEqual(typeof(int), obj.GetType());
+ // Assert.AreEqual(42, (int)obj);
+ // Assert.AreEqual(typeof(int), obj.GetType());
14
}
15
16
// [TestMethod]
0 commit comments