From 6d84c8527d271dd30ecd6071f12f51c62b70bbcc Mon Sep 17 00:00:00 2001 From: Claudia Date: Fri, 5 Apr 2024 16:07:36 +0200 Subject: [PATCH] ci: remove not needed imports --- packages/subgraph/tests/plugin/plugin.test.ts | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/packages/subgraph/tests/plugin/plugin.test.ts b/packages/subgraph/tests/plugin/plugin.test.ts index 44404afd..ecad0c76 100644 --- a/packages/subgraph/tests/plugin/plugin.test.ts +++ b/packages/subgraph/tests/plugin/plugin.test.ts @@ -1,5 +1,3 @@ -import {ProposalCreated} from '../../generated/templates/TokenVoting/TokenVoting'; -import {PLUGIN_REPO_ADDRESS} from '../../imported/repo-address'; import { handleVoteCast, handleProposalExecuted, @@ -19,26 +17,19 @@ import { ExtendedAction, } from '../helpers/extended-schema'; import { - DAO_TOKEN_ADDRESS, STRING_DATA, VOTING_MODE, ONE, ZERO, TWO, ERC20_AMOUNT_FULL, - DAO_ADDRESS, } from '../utils/constants'; -import { - createDummyAction, - generateActionEntityId, -} from '@aragon/osx-commons-subgraph'; -import {Address, bigInt, BigInt, ethereum} from '@graphprotocol/graph-ts'; +import {bigInt, BigInt} from '@graphprotocol/graph-ts'; import { afterAll, assert, clearStore, describe, - newMockEvent, test, } from 'matchstick-as/assembly/index';