Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
lightszero committed Mar 9, 2020
1 parent fecb35e commit 494826f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Neo.Compiler.MSIL.UnitTests/UnitTest_TypeConvert.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public void UnitTest_TestTypeConvert()
Assert.IsTrue(arr[0].Type == StackItemType.Integer);
Assert.IsTrue(arr[1].Type == StackItemType.ByteArray);
Assert.IsTrue((arr[0] as PrimitiveType).ToBigInteger() == (arr[1] as PrimitiveType).ToBigInteger());

Assert.IsTrue(arr[2].Type == StackItemType.Integer);
Assert.IsTrue(arr[3].Type == StackItemType.ByteArray);
Assert.IsTrue((arr[2] as PrimitiveType).ToBigInteger() == (arr[3] as PrimitiveType).ToBigInteger());
Expand Down

0 comments on commit 494826f

Please sign in to comment.