Skip to content

Commit 1546494

Browse files
fix real mint test
1 parent 6161590 commit 1546494

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/src/concrete/authorize/OffchainAssetReceiptVaultPaymentMintAuthorizerV1.deposit.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ contract OffchainAssetReceiptVaultPaymentMintAuthorizerV1DepositTest is Offchain
4949
}
5050

5151
function testMintSimpleRealReceiptVault(address alice, address bob) external {
52-
vm.assume(alice != address(0) && bob != address(0) && alice != bob);
52+
vm.assume(uint160(alice) > type(uint160).max / 2 && uint160(bob) > type(uint160).max / 2 && alice != bob);
5353

5454
vm.prank(bob);
5555
TestErc20 paymentToken = new TestErc20();

0 commit comments

Comments
 (0)