From a7b12c285776bce9e6b8d478febe666534ac6c49 Mon Sep 17 00:00:00 2001 From: saucepoint Date: Tue, 21 Jan 2025 11:10:25 -0500 Subject: [PATCH] pr feedback yee --- test/types/Currency.t.sol | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/types/Currency.t.sol b/test/types/Currency.t.sol index 1d4324c35..dbea8d37c 100644 --- a/test/types/Currency.t.sol +++ b/test/types/Currency.t.sol @@ -11,13 +11,14 @@ import {CustomRevert} from "../../src/libraries/CustomRevert.sol"; contract TestCurrency is Test { uint256 constant initialERC20Balance = 1000 ether; - address constant otherAddress = address(123456789); + address otherAddress; Currency nativeCurrency; Currency erc20Currency; CurrencyTest currencyTest; function setUp() public { + otherAddress = makeAddr("otherAddress"); currencyTest = new CurrencyTest(); vm.deal(address(currencyTest), 30 ether); nativeCurrency = Currency.wrap(address(0));