Skip to content

Commit

Permalink
style(test-postalSvc): lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dckc committed Feb 22, 2024
1 parent 98f9428 commit cfb3176
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions contract/test/test-postalSvc.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ import {
getBundleId,
makeBundleCacheContext,
} from './boot-tools.js';
import { allValues, mapValues, mockWalletFactory } from './wallet-tools.js';
import { mockWalletFactory } from './wallet-tools.js';
import {
payerPete,
receiverRex,
receiverRose,
senderContract,
} from './market-actors.js';

const { entries, fromEntries, keys } = Object;
const { entries } = Object;

/** @type {import('ava').TestFn<Awaited<ReturnType<makeBundleCacheContext>>>} */
const test = anyTest;
Expand All @@ -46,10 +46,10 @@ test('deliver payment using offer', async t => {
Item: makeIssuerKit('Item', AssetKind.SET),
};
const { MNY, Item } = iKit;
entries(iKit).forEach(([name, kit]) => {
for (const [name, kit] of entries(iKit)) {
powers.issuer.produce[name].resolve(kit.issuer);
powers.brand.produce[name].resolve(kit.brand);
});
}

const bundleID = getBundleId(bundles.postalSvc);
await startPostalSvc(powers, {
Expand Down

0 comments on commit cfb3176

Please sign in to comment.