From 86a4d1e2443d017a51b1e1ffb2a0bb5cd87c5673 Mon Sep 17 00:00:00 2001 From: Dan Connolly Date: Wed, 27 Nov 2024 16:53:31 -0600 Subject: [PATCH] fixup! test: demo SWINGSET_WORKER_TYPE, computron count --- packages/boot/test/bootstrapTests/orchestration.test.ts | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/packages/boot/test/bootstrapTests/orchestration.test.ts b/packages/boot/test/bootstrapTests/orchestration.test.ts index 74740ac2939..e4caf02c824 100644 --- a/packages/boot/test/bootstrapTests/orchestration.test.ts +++ b/packages/boot/test/bootstrapTests/orchestration.test.ts @@ -11,11 +11,14 @@ import { makeWalletFactoryContext, type WalletFactoryTestContext, } from './walletFactory.js'; -import { insistManagerType, makePolicyProvider } from '../../tools/supports.js'; +import { + insistManagerType, + makeRunPolicyProvider, +} from '../../tools/supports.js'; const test: TestFn< WalletFactoryTestContext & { - perfTool?: ReturnType; + perfTool?: ReturnType; } > = anyTest; @@ -35,7 +38,7 @@ const { test.before(async t => { insistManagerType(defaultManagerType); const perfTool = - defaultManagerType === 'xsnap' ? makePolicyProvider() : undefined; + defaultManagerType === 'xsnap' ? makeRunPolicyProvider() : undefined; const ctx = await makeWalletFactoryContext( t, '@agoric/vm-config/decentral-itest-orchestration-config.json',