Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jcompagni10 committed Mar 4, 2025
1 parent f985675 commit 254d483
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/testcases/run_in_band/chain_manager.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ describe('Neutron / Chain Manager', () => {
dao: currentOverruleProposalConfig['dao'],
close_proposal_on_execution_failure:
currentOverruleProposalConfig[
'close_proposal_on_execution_failure'
'close_proposal_on_execution_failure'
],
},
}),
Expand Down Expand Up @@ -282,8 +282,9 @@ describe('Neutron / Chain Manager', () => {
'1000',
);

const timelockedProp =
await subdaoMember1.supportAndExecuteProposal(proposalId);
const timelockedProp = await subdaoMember1.supportAndExecuteProposal(
proposalId,
);

expect(timelockedProp.id).toEqual(proposalId);
expect(timelockedProp.status).toEqual('timelocked');
Expand Down Expand Up @@ -397,8 +398,9 @@ describe('Neutron / Chain Manager', () => {
'1000',
);

const timelockedProp =
await subdaoMember1.supportAndExecuteProposal(proposalId);
const timelockedProp = await subdaoMember1.supportAndExecuteProposal(
proposalId,
);

expect(timelockedProp.id).toEqual(proposalId);
expect(timelockedProp.status).toEqual('timelocked');
Expand Down

0 comments on commit 254d483

Please sign in to comment.