File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed
Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -708,9 +708,7 @@ contract RNBWStakingTest is Test {
708708 staking.stake (7 ether);
709709
710710 uint256 aliceShares = staking.shares (alice);
711- vm.expectRevert (
712- abi.encodeWithSelector (IRNBWStaking.DustSharesRemaining.selector , alice, 1 )
713- );
711+ vm.expectRevert (abi.encodeWithSelector (IRNBWStaking.DustSharesRemaining.selector , alice, 1 ));
714712 staking.unstake (aliceShares - 1 );
715713 vm.stopPrank ();
716714 }
@@ -1464,9 +1462,7 @@ contract RNBWStakingTest is Test {
14641462
14651463 uint256 aliceShares = staking.shares (alice);
14661464 vm.startPrank (alice);
1467- vm.expectRevert (
1468- abi.encodeWithSelector (IRNBWStaking.DustSharesRemaining.selector , alice, 1 )
1469- );
1465+ vm.expectRevert (abi.encodeWithSelector (IRNBWStaking.DustSharesRemaining.selector , alice, 1 ));
14701466 staking.unstake (aliceShares - 1 );
14711467 vm.stopPrank ();
14721468
You can’t perform that action at this time.
0 commit comments