Skip to content

Commit

Permalink
fix merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
vinistevam committed Oct 1, 2024
1 parent 224ce27 commit ba77578
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ describe('Confirmation Redesign Contract Interaction Component', function () {
title: this.test?.fullTitle(),
testSpecificMock: mockOptimismOracle,
},
async ({ driver }: TestSuiteArguments) => {
async ({ driver, contractRegistry }: TestSuiteArguments) => {
await unlockWallet(driver);
await createLayer2Transaction(driver);

Expand Down
1 change: 0 additions & 1 deletion test/e2e/tests/transaction/edit-gas-fee.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ const {
unlockWallet,
generateGanacheOptions,
WINDOW_TITLES,
createInternalTransaction,
} = require('../../helpers');
const FixtureBuilder = require('../../fixture-builder');

Expand Down
7 changes: 2 additions & 5 deletions test/e2e/tests/transaction/send-edit.spec.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
const { strict: assert } = require('assert');
const {
createInternalTransaction,
} = require('../../page-objects/flows/transaction');

const {
defaultGanacheOptions,
Expand All @@ -16,7 +13,7 @@ describe('Editing Confirm Transaction', function () {
it('goes back from confirm page to edit eth value, gas price and gas limit', async function () {
await withFixtures(
{
fixtures: new FixtureBuilder().withConversionRateDisabled().build(),
fixtures: new FixtureBuilder().build(),
ganacheOptions: defaultGanacheOptions,
title: this.test.fullTitle(),
},
Expand Down Expand Up @@ -91,7 +88,7 @@ describe('Editing Confirm Transaction', function () {
it('goes back from confirm page to edit eth value, baseFee, priorityFee and gas limit - 1559 V2', async function () {
await withFixtures(
{
fixtures: new FixtureBuilder().withConversionRateDisabled().build(),
fixtures: new FixtureBuilder().build(),
ganacheOptions: generateGanacheOptions({ hardfork: 'london' }),
title: this.test.fullTitle(),
},
Expand Down

0 comments on commit ba77578

Please sign in to comment.