Skip to content

Commit

Permalink
ci: remove test for imported function
Browse files Browse the repository at this point in the history
  • Loading branch information
clauBv23 committed Apr 2, 2024
1 parent 8d77179 commit 66bfe39
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions packages/subgraph/tests/plugin/plugin.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -262,23 +262,4 @@ describe('Plugin', () => {
assert.dataSourceExists('AdminMembers', DAO_ADDRESS);
});
});

test('We correctly generate the action ID', () => {
let caller = pluginAddress;
let daoAddress = DAO_ADDRESS;
let callId = 'c4ll me';
let index = 255;

let actionId = generateActionEntityId(
caller,
Address.fromString(daoAddress),
callId,
index
);

assert.stringEquals(
actionId,
[caller.toHexString(), daoAddress, callId, index.toString()].join('_')
);
});
});

0 comments on commit 66bfe39

Please sign in to comment.