Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
pedronfigueiredo committed Jan 10, 2025
1 parent 741cd13 commit 5c23171
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ describe('Permit Batch Signature Tests', () => {

const simulationDetails = [
'Estimated changes',
"You're removing the spender permission to spend this many tokens from your account.",
"You're giving the spender permission to spend this many tokens from your account.",
'Spending cap',
'0xA0b86...6eB48',
'Unlimited',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ describe('Permit Single Signature Tests', () => {
);
const simulationDetails = [
'Estimated changes',
"You're removing the spender permission to spend this many tokens from your account.",
"You're giving the spender permission to spend this many tokens from your account.",
'Spending cap',
'0xA0b86...6eB48',
'Unlimited',
Expand Down
2 changes: 1 addition & 1 deletion test/integration/confirmations/signatures/permit.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ describe('Permit Confirmation', () => {
expect(simulationSection).toBeInTheDocument();
expect(simulationSection).toHaveTextContent('Estimated changes');
expect(simulationSection).toHaveTextContent(
"You're removing the spender permission to spend this many tokens from your account.",
"You're giving the spender permission to spend this many tokens from your account.",
);
expect(simulationSection).toHaveTextContent('Spending cap');
expect(simulationSection).toHaveTextContent('0xCcCCc...ccccC');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ exports[`TypedSignInfo correctly renders permit sign type 1`] = `
class="mm-box mm-text mm-text--body-md mm-box--color-inherit"
style="white-space: pre-wrap;"
>
You're removing the spender permission to spend this many tokens from your account.
You're giving the spender permission to spend this many tokens from your account.
</p>
</div>
</div>
Expand Down Expand Up @@ -420,7 +420,7 @@ exports[`TypedSignInfo correctly renders permit sign type with no deadline 1`] =
class="mm-box mm-text mm-text--body-md mm-box--color-inherit"
style="white-space: pre-wrap;"
>
You're removing the spender permission to spend this many tokens from your account.
You're giving the spender permission to spend this many tokens from your account.
</p>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ exports[`PermitSimulation renders component correctly 1`] = `
class="mm-box mm-text mm-text--body-md mm-box--color-inherit"
style="white-space: pre-wrap;"
>
You're removing the spender permission to spend this many tokens from your account.
You're giving the spender permission to spend this many tokens from your account.
</p>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ describe('PermitSimulation', () => {
expect(await findByText('Estimated changes')).toBeInTheDocument();
expect(
await findByText(
"You're removing the spender permission to spend this many tokens from your account.",
"You're giving the spender permission to spend this many tokens from your account.",
),
).toBeInTheDocument();
});
Expand Down Expand Up @@ -103,7 +103,7 @@ describe('PermitSimulation', () => {
expect(await findByText('Estimated changes')).toBeInTheDocument();
expect(
await findByText(
"You're removing the spender permission to spend this many tokens from your account.",
"You're giving the spender permission to spend this many tokens from your account.",
),
).toBeInTheDocument();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ exports[`Confirm should match snapshot for signature - typed sign - V4 - PermitB
class="mm-box mm-text mm-text--body-md mm-box--color-inherit"
style="white-space: pre-wrap;"
>
You're removing the spender permission to spend this many tokens from your account.
You're giving the spender permission to spend this many tokens from your account.
</p>
</div>
</div>
Expand Down Expand Up @@ -866,7 +866,7 @@ exports[`Confirm should match snapshot for signature - typed sign - V4 - PermitS
class="mm-box mm-text mm-text--body-md mm-box--color-inherit"
style="white-space: pre-wrap;"
>
You're removing the spender permission to spend this many tokens from your account.
You're giving the spender permission to spend this many tokens from your account.
</p>
</div>
</div>
Expand Down Expand Up @@ -2349,7 +2349,7 @@ exports[`Confirm should match snapshot for signature - typed sign - permit 1`] =
class="mm-box mm-text mm-text--body-md mm-box--color-inherit"
style="white-space: pre-wrap;"
>
You're removing the spender permission to spend this many tokens from your account.
You're giving the spender permission to spend this many tokens from your account.
</p>
</div>
</div>
Expand Down

0 comments on commit 5c23171

Please sign in to comment.