Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsoncusack committed Apr 20, 2024
1 parent f38cea6 commit 50833b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions solidity/tests/WebAuthn_forge/test/FCL_elliptic.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ contract ArithmeticTest is Test {
assertFalse(FCL_Elliptic_ZZ.ecAff_isOnCurve(gx, 0));
}

function test_ecAff_isOnCurve_returnsFalse_whenXGreaterThanEqualP(uint x) public {
function test_ecAff_isOnCurve_returnsFalse_whenXGreaterThanEqualP(uint256 x) public {
vm.assume(x >= p);
assertFalse(FCL_Elliptic_ZZ.ecAff_isOnCurve(x, gy));
}

function test_ecAff_isOnCurve_returnsFalse_whenYGreaterThanEqualP(uint y) public {
function test_ecAff_isOnCurve_returnsFalse_whenYGreaterThanEqualP(uint256 y) public {
vm.assume(y >= p);
assertFalse(FCL_Elliptic_ZZ.ecAff_isOnCurve(gx, y));
}
Expand Down

0 comments on commit 50833b6

Please sign in to comment.