diff --git a/packages/orchestration/test/facade.test.ts b/packages/orchestration/test/facade.test.ts index 8ee3e4aaa450..728e38016d5c 100644 --- a/packages/orchestration/test/facade.test.ts +++ b/packages/orchestration/test/facade.test.ts @@ -49,7 +49,6 @@ test('calls between flows', async t => { const { outer, outer2, inner } = orchestrateAll(flows, { peerFlows: flows, - zcf, }); t.deepEqual(await vt.when(inner('a', 'b', 'c')), 'a b c'); @@ -70,7 +69,6 @@ test('context mapping individual flows', async t => { const { outer } = orchestrateAll(flows, { peerFlows: { inner: flows.inner }, - zcf, }); t.deepEqual(await vt.when(outer('a', 'b', 'c')), 'Hello a b c'); diff --git a/packages/orchestration/test/fixtures/zoe-tools.contract.js b/packages/orchestration/test/fixtures/zoe-tools.contract.js index 67e3ae5268ca..4e501563f406 100644 --- a/packages/orchestration/test/fixtures/zoe-tools.contract.js +++ b/packages/orchestration/test/fixtures/zoe-tools.contract.js @@ -58,7 +58,6 @@ const contract = async ( const creatorFacet = prepareChainHubAdmin(zone, chainHub); const orchFns = orchestrateAll(flows, { - zcf, contractState, zoeTools, });