Skip to content

Commit cd13f03

Browse files
committed
More granular AOT test
1 parent 0aadf68 commit cd13f03

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/DotNext.AotTests/Runtime/BoxedValueTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ public void BoxUnbox()
99
var obj = (BoxedValue<int>)42;
1010
// Assert.AreEqual(42.GetHashCode(), obj.GetHashCode());
1111
Assert.AreEqual(42, obj.Value);
12-
Assert.AreEqual(42, (int)obj);
13-
Assert.AreEqual(typeof(int), obj.GetType());
12+
// Assert.AreEqual(42, (int)obj);
13+
// Assert.AreEqual(typeof(int), obj.GetType());
1414
}
1515

1616
// [TestMethod]

0 commit comments

Comments
 (0)