From 69ccb37cb957447709ee80508a897c098e691f6f Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Tue, 15 Nov 2022 13:05:25 -0330 Subject: [PATCH] Fix e2e test The new e2e test added for the bug fix being released here has been updated to use the old e2e test fixtures, rather than the fixture- builder. The fixture builder is not available on this branch yet. --- test/e2e/tests/dapp-tx-edit.spec.js | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/test/e2e/tests/dapp-tx-edit.spec.js b/test/e2e/tests/dapp-tx-edit.spec.js index 3b937f4ea..ad7140804 100644 --- a/test/e2e/tests/dapp-tx-edit.spec.js +++ b/test/e2e/tests/dapp-tx-edit.spec.js @@ -1,7 +1,6 @@ const { strict: assert } = require('assert'); const { convertToHexValue, withFixtures } = require('../helpers'); const { SMART_CONTRACTS } = require('../seeder/smart-contracts'); -const FixtureBuilder = require('../fixture-builder'); describe('Editing confirmations of dapp initiated contract interactions', function () { const ganacheOptions = { @@ -18,9 +17,7 @@ describe('Editing confirmations of dapp initiated contract interactions', functi await withFixtures( { dapp: true, - fixtures: new FixtureBuilder() - .withPermissionControllerConnectedToTestDapp() - .build(), + fixtures: 'connected-state', ganacheOptions, smartContract, title: this.test.title, @@ -68,9 +65,7 @@ describe('Editing confirmations of dapp initiated contract interactions', functi await withFixtures( { dapp: true, - fixtures: new FixtureBuilder() - .withPermissionControllerConnectedToTestDapp() - .build(), + fixtures: 'connected-state', ganacheOptions, smartContract, title: this.test.title,