Skip to content

test: fix typos #554

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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