From 4c26254e000442edd6207f705584b0a580fa2c1b Mon Sep 17 00:00:00 2001 From: Dan Connolly Date: Mon, 23 Sep 2024 18:15:44 -0500 Subject: [PATCH] fixup! feat(orchestration): ZcfTools for use in flows --- packages/orchestration/test/facade.test.ts | 2 -- packages/orchestration/test/fixtures/zoe-tools.contract.js | 1 - 2 files changed, 3 deletions(-) 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, });