From 50370b5b0c3d2459ac3c615e7f8195f9c868ffa9 Mon Sep 17 00:00:00 2001 From: han Date: Sun, 19 Jan 2025 16:43:31 +0700 Subject: [PATCH] add comment on TokenDividerTest --- test/unit/TokenDividerTest.t.sol | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/unit/TokenDividerTest.t.sol b/test/unit/TokenDividerTest.t.sol index 214863e..8d54b44 100644 --- a/test/unit/TokenDividerTest.t.sol +++ b/test/unit/TokenDividerTest.t.sol @@ -27,8 +27,8 @@ contract TokenDiverTest is Test { erc721Mock = new ERC721Mock(); - erc721Mock.mint(USER); - vm.deal(USER2, STARTING_USER_BALANCE); + erc721Mock.mint(USER); // @auditor: user has the NFT + vm.deal(USER2, STARTING_USER_BALANCE); // @auditor: user2 got 10 ether } function testDivideNft() public { @@ -151,4 +151,4 @@ contract TokenDiverTest is Test { } } -} \ No newline at end of file +}