Skip to content

Commit

Permalink
- fix IsPoolIdInSupplyRange tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ArdenHide committed Jun 28, 2024
1 parent feb7487 commit 351850a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ internal void ShouldReturnExpectedResult(BigInteger poolId, BigInteger totalSupp

public static IEnumerable<object[]> TestData()
{
yield return new object[] { 5, 10, true };
yield return new object[] { 10, 10, false };
yield return new object[] { 15, 10, false };
yield return new object[] { new BigInteger(5), new BigInteger(10), true };
yield return new object[] { new BigInteger(10), new BigInteger(10), false };
yield return new object[] { new BigInteger(15), new BigInteger(10), false };
}
}

Expand Down

0 comments on commit 351850a

Please sign in to comment.