diff --git a/packages/orchestration/src/fixtures/query-flows.contract.js b/packages/orchestration/test/fixtures/query-flows.contract.js similarity index 90% rename from packages/orchestration/src/fixtures/query-flows.contract.js rename to packages/orchestration/test/fixtures/query-flows.contract.js index d8e1c8eb271..358f6bda9ad 100644 --- a/packages/orchestration/src/fixtures/query-flows.contract.js +++ b/packages/orchestration/test/fixtures/query-flows.contract.js @@ -3,13 +3,13 @@ */ import { InvitationShape } from '@agoric/zoe/src/typeGuards.js'; import { M } from '@endo/patterns'; -import { withOrchestration } from '../utils/start-helper.js'; +import { withOrchestration } from '../../src/utils/start-helper.js'; import * as flows from './query-flows.flows.js'; /** * @import {Zone} from '@agoric/zone'; - * @import {OrchestrationPowers} from '..//utils/start-helper.js'; - * @import {OrchestrationTools} from '../utils/start-helper.js'; + * @import {OrchestrationPowers} from '../../src/utils/start-helper.js'; + * @import {OrchestrationTools} from '../../src/utils/start-helper.js'; */ /** diff --git a/packages/orchestration/test/fixtures/query-flows.contract.test.ts b/packages/orchestration/test/fixtures/query-flows.contract.test.ts index f3c9b88d6fe..0cb72e7eb21 100644 --- a/packages/orchestration/test/fixtures/query-flows.contract.test.ts +++ b/packages/orchestration/test/fixtures/query-flows.contract.test.ts @@ -27,9 +27,9 @@ import { const dirname = path.dirname(new URL(import.meta.url).pathname); const contractName = 'query-flows'; -const contractFile = `${dirname}/../../src/fixtures/query-flows.contract.js`; +const contractFile = `${dirname}/../../test/fixtures/query-flows.contract.js`; type StartFn = - typeof import('../../src/fixtures/query-flows.contract.js').start; + typeof import('../../test/fixtures/query-flows.contract.js').start; type TestContext = Awaited> & { zoe: ZoeService; diff --git a/packages/orchestration/src/fixtures/query-flows.flows.js b/packages/orchestration/test/fixtures/query-flows.flows.js similarity index 100% rename from packages/orchestration/src/fixtures/query-flows.flows.js rename to packages/orchestration/test/fixtures/query-flows.flows.js