Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
augustbleeds committed Jun 11, 2024
1 parent a3abc5d commit 263e419
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ describe('Multisig', () => {
const command = await wrapCommand(registerExecuteCommand(setThreshold))(deps).create(
{
threshold: 2,
...myFlags
...myFlags,
},
[multisigContractAddress],
)
Expand All @@ -95,7 +95,7 @@ describe('Multisig', () => {
{
threshold: 2,
multisigProposal: multisigProposalId,
...myFlags
...myFlags,
},
[multisigContractAddress],
)
Expand All @@ -108,7 +108,7 @@ describe('Multisig', () => {
{
threshold: 2,
multisigProposal: multisigProposalId,
...myFlags
...myFlags,
},
[multisigContractAddress],
)
Expand Down Expand Up @@ -158,7 +158,7 @@ describe('Multisig', () => {
const command = await wrapCommand(registerExecuteCommand(setSigners))(deps(0)).create(
{
signers: accounts,
...myFlags(0)
...myFlags(0),
},
[multisigContractAddress],
)
Expand All @@ -172,7 +172,7 @@ describe('Multisig', () => {
{
signers: accounts,
multisigProposal: multisigProposalId,
...myFlags(0)
...myFlags(0),
},
[multisigContractAddress],
)
Expand All @@ -185,7 +185,7 @@ describe('Multisig', () => {
{
signers: accounts,
multisigProposal: multisigProposalId,
...myFlags(1)
...myFlags(1),
},
[multisigContractAddress],
)
Expand All @@ -198,7 +198,7 @@ describe('Multisig', () => {
{
signers: accounts,
multisigProposal: multisigProposalId,
...myFlags(0)
...myFlags(0),
},
[multisigContractAddress],
)
Expand Down

0 comments on commit 263e419

Please sign in to comment.