Skip to content
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

fix: Correct description lines of the code #261

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
10 changes: 5 additions & 5 deletions packages/linea-ens-app/patches/@[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -388,16 +388,16 @@ index 66fad67c218a34a923d3674683c3a79c51c8555b..f048f6bc8bdc99af229eca208a38d6db
@@ -1145,6 +1179,7 @@ const metamask = {
return true;
},
async confirmPermisionToApproveAll() {
+ log(`Running confirmPermisionToApproveAll()`);
async confirmPermissionToApproveAll() {
+ log(`Running confirmPermissionToApproveAll()`);
const notificationPage = await playwright.switchToMetamaskNotification();
await playwright.waitAndClick(
notificationPageElements.allowToSpendButton,
@@ -1158,6 +1193,7 @@ const metamask = {
return true;
},
async rejectPermisionToApproveAll() {
+ log(`Running rejectPermisionToApproveAll()`);
async rejectPermissionToApproveAll() {
+ log(`Running rejectPermissionToApproveAll()`);
const notificationPage = await playwright.switchToMetamaskNotification();
await playwright.waitAndClick(
notificationPageElements.allowToSpendButton,
Expand Down Expand Up @@ -716,4 +716,4 @@ index d7daab5bf8883389ccbecb18e53c050d1eef6d13..3ad8b6d1342f99ca4d33d4dd74433595
+ )
.option(
'-r, --record',
'[dashboard] record video of tests running after setting up your project to record',
'[dashboard] record video of tests running after setting up your project to record',
Original file line number Diff line number Diff line change
Expand Up @@ -320,4 +320,4 @@
"useLiteralContent": true
}
}
}
}
2 changes: 1 addition & 1 deletion packages/linea-ens-contracts/test/wrapper/NameWrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -5988,7 +5988,7 @@ describe('Name Wrapper', () => {
).to.equal(true)
})

it('Allows specifiying resolver address', async () => {
it('Allows specifying resolver address', async () => {
await BaseRegistrar.register(tokenId, account, 1 * DAY)

await BaseRegistrar['safeTransferFrom(address,address,uint256,bytes)'](
Expand Down