Skip to content

Commit

Permalink
test: fix typos (#554)
Browse files Browse the repository at this point in the history
Co-authored-by: nkrishang <62195808+nkrishang@users.noreply.github.com>
  • Loading branch information
xiaolou86 and nkrishang authored Nov 20, 2023
1 parent ade8109 commit c7a4554
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function approveCurrencyForListing(
├── when approving different price for listed currency
│ └── it should revert ✅
└── when not approving different price for listed currency
├── when prive to approve for curreny is already approved
├── when prive to approve for currency is already approved
│ └── it should revert ✅
└── when approving a new price for currency ✅
├── it should update the approved price for currency
Expand Down
2 changes: 1 addition & 1 deletion src/test/smart-wallet/AccountVulnPOC.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ contract Number {
if (owner.code.length == 0) {
// Signature verification by ECDSA
} else {
// Signature verfication by EIP1271
// Signature verification by EIP1271
bytes32 digest = keccak256(abi.encode(newNum));
require(
EIP1271Verifier(owner).isValidSignature(digest, signature) == GPv2EIP1271.MAGICVALUE,
Expand Down
2 changes: 1 addition & 1 deletion src/test/staking/TokenStake.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -860,7 +860,7 @@ contract Macro_TokenStake_Tax is BaseTest {
// vm.stopPrank();
// }

// // Staked amount still reamins unchanged for stakerOne
// // Staked amount still remains unchanged for stakerOne
// (stakingTokenAmount, ) = stakeContract.getStakeInfo(stakerOne);
// assertEq(stakingTokenAmount, 100 ether);

Expand Down

0 comments on commit c7a4554

Please sign in to comment.