Skip to content

Commit 104745d

Browse files
committed
Verify hash code
1 parent 5c02e0a commit 104745d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DotNext.AotTests/Runtime/BoxedValueTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public class BoxedValueTests
77
public void BoxUnbox()
88
{
99
var obj = (BoxedValue<int>)42;
10-
// Assert.AreEqual(42.GetHashCode(), obj.GetHashCode());
10+
Assert.AreEqual(42.GetHashCode(), obj.GetHashCode());
1111
Assert.AreEqual(42, obj.GetReference());
1212
// Assert.AreEqual(42, (int)obj);
1313
// Assert.AreEqual(typeof(int), obj.GetType());

0 commit comments

Comments
 (0)