Skip to content

Commit

Permalink
fix: fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
gtsonevv committed Aug 20, 2024
1 parent 9c7db11 commit ca580b1
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ module.exports.shouldStoreAndRetrieveKeys = ctx => {
});

test('Add two contracts to account and retrieve them', async () => {
const networkId = "network"
const accountId = "account"
const contract1 = "contract1"
const contract2 = "contract2"
const networkId = 'network';
const accountId = 'account';
const contract1 = 'contract1';
const contract2 = 'contract2';
const key1Expected = KeyPairEd25519.fromRandom();
const key2Expected = KeyPairEd25519.fromRandom();
await ctx.keyStore.setKey(networkId, accountId, key1Expected, contract1);
Expand Down

0 comments on commit ca580b1

Please sign in to comment.