Skip to content

Commit 903ebb5

Browse files
mrshiposhaCertainLach
authored andcommitted
fix: yarn fix
1 parent f78623c commit 903ebb5

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

tests/src/governance/init.test.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ describeGov('Governance: Initialization', () => {
4141

4242
yaroslav,
4343
daniel,
44-
] = await helper.arrange.createAccounts(new Array(counselorsNum + techCommsNum + coreDevsNum).fill(10_000n), donor);
44+
] = await helper.arrange.createAccounts(new Array(counselorsNum + techCommsNum + coreDevsNum).fill(10_000n), donor);
4545

4646
counselors = {
4747
alex,
@@ -65,12 +65,10 @@ describeGov('Governance: Initialization', () => {
6565
});
6666

6767
itSub('Initialize Governance', async ({helper}) => {
68-
const promoteFellow = (fellow: string, promotionsNum: number) => {
69-
return new Array(promotionsNum).fill(helper.fellowship.collective.promoteCall(fellow));
70-
};
68+
const promoteFellow = (fellow: string, promotionsNum: number) => new Array(promotionsNum).fill(helper.fellowship.collective.promoteCall(fellow));
7169

7270
const expectFellowRank = async (fellow: string, expectedRank: number) => {
73-
expect(await helper.fellowship.collective.getMemberRank(fellow)).to.be.equal(expectedRank);
71+
expect(await helper.fellowship.collective.getMemberRank(fellow)).to.be.equal(expectedRank);
7472
};
7573

7674
console.log('\t- Setup the Prime of the Council via sudo');

0 commit comments

Comments
 (0)