Skip to content

Commit 667f949

Browse files
Move export
1 parent 71d52cd commit 667f949

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

test/Modules/IexecCategoryManager.test.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
import { ethereum } from '@graphprotocol/graph-ts';
55
import { assert, describe, newTypedMockEventWithParams, test } from 'matchstick-as/assembly/index';
66
import { CreateCategory } from '../../generated/Core/IexecInterfaceToken';
7-
import { handleCreateCategory } from '../../src/Modules/IexecCategoryManager';
8-
export { handleCreateCategory };
7+
import { handleCreateCategory } from '../../src/Modules';
98

109
describe('IexecCategoryManager', () => {
1110
test('Should handle CreateCategory', () => {
@@ -34,3 +33,5 @@ describe('IexecCategoryManager', () => {
3433
});
3534
});
3635
});
36+
37+
export { handleCreateCategory };

test/Modules/IexecPoco.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import { Address, BigInt, Bytes, ethereum } from '@graphprotocol/graph-ts';
55
import { assert, describe, newTypedMockEventWithParams, test } from 'matchstick-as/assembly/index';
66
import { DealSponsored } from '../../generated/Core/IexecInterfaceToken';
77
import { handleDealSponsored } from '../../src/Modules';
8-
export { handleDealSponsored };
98

109
describe('IexecPoco', () => {
1110
test('Should handle DealSponsored', () => {
@@ -41,3 +40,5 @@ describe('IexecPoco', () => {
4140
assert.fieldEquals('Transaction', transactionId, 'id', transactionId);
4241
});
4342
});
43+
44+
export { handleDealSponsored };

0 commit comments

Comments
 (0)