Skip to content

Commit

Permalink
Linting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
brickpop committed Jan 5, 2024
1 parent fdc5771 commit 7b6ef20
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import {
PluginRepo__factory,
PluginSetupProcessor,
PluginSetupProcessor__factory,
DAO__factory,
} from '@aragon/osx-ethers';
import {SignerWithAddress} from '@nomiclabs/hardhat-ethers/signers';
import {expect} from 'chai';
Expand All @@ -40,8 +39,6 @@ const pluginSettings: MajorityVotingBase.VotingSettingsStruct = {
votingMode: 0,
};
const minMemberAccessProposalDuration = 60 * 60 * 24;
const daoInterface = DAO__factory.createInterface();
const pspInterface = PluginSetupProcessor__factory.createInterface();

describe('GovernancePluginsSetup processing', function () {
let deployer: SignerWithAddress;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ import {
PluginSetupProcessor__factory,
PluginRepoFactory__factory,
PluginRepoRegistry__factory,
DAO__factory,
IDAO,
DAO__factory,
} from '@aragon/osx-ethers';
import {SignerWithAddress} from '@nomiclabs/hardhat-ethers/signers';
import {expect} from 'chai';
Expand All @@ -49,14 +49,12 @@ const pluginSettings: MajorityVotingBase.VotingSettingsStruct = {
};
const minMemberAccessProposalDuration = 60 * 60 * 24;
const daoInterface = DAO__factory.createInterface();
const pspInterface = PluginSetupProcessor__factory.createInterface();

describe('Member Access Condition E2E', () => {
let deployer: SignerWithAddress;
let pluginUpgrader: SignerWithAddress;
let alice: SignerWithAddress;
let bob: SignerWithAddress;
let carol: SignerWithAddress;

let psp: PluginSetupProcessor;
let dao: DAO;
Expand All @@ -69,7 +67,7 @@ describe('Member Access Condition E2E', () => {
let memberAccessPlugin: TestMemberAccessPlugin;

before(async () => {
[deployer, pluginUpgrader, alice, bob, carol] = await ethers.getSigners();
[deployer, pluginUpgrader, alice, bob] = await ethers.getSigners();

// Get the PluginRepoFactory address
const pluginRepoFactoryAddr: string = getPluginRepoFactoryAddress(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,13 @@ import {deployTestDao} from '../helpers/test-dao';
import {getNamedTypesFromMetadata, Operation} from '../helpers/types';
import {
abiCoder,
ADDRESS_ONE,
ADDRESS_ZERO,
EXECUTE_PERMISSION_ID,
NO_CONDITION,
pctToRatio,
UPDATE_ADDRESSES_PERMISSION_ID,
UPDATE_MULTISIG_SETTINGS_PERMISSION_ID,
UPDATE_VOTING_SETTINGS_PERMISSION_ID,
UPGRADE_PLUGIN_PERMISSION_ID,
VotingMode,
} from './common';
import {activeContractsList} from '@aragon/osx-ethers';
Expand Down

0 comments on commit 7b6ef20

Please sign in to comment.