diff --git a/scripts/release/prepare-canary.js b/scripts/release/prepare-canary.js index 7133b5d763537..ca5dbe849156a 100755 --- a/scripts/release/prepare-canary.js +++ b/scripts/release/prepare-canary.js @@ -11,7 +11,7 @@ const getLatestMasterBuildNumber = require('./prepare-canary-commands/get-latest const parseParams = require('./prepare-canary-commands/parse-params'); const printPrereleaseSummary = require('./shared-commands/print-prerelease-summary'); const testPackagingFixture = require('./shared-commands/test-packaging-fixture'); -const testSchedulerFixture = require('./shared-commands/test-scheduler-fixture'); +const testTracingFixture = require('./shared-commands/test-tracing-fixture'); const run = async () => { try { @@ -28,7 +28,7 @@ const run = async () => { if (!params.skipTests) { await testPackagingFixture(params); - await testSchedulerFixture(params); + await testTracingFixture(params); } await printPrereleaseSummary(params); diff --git a/scripts/release/prepare-stable.js b/scripts/release/prepare-stable.js index a651747cd6e6f..4e290574b17dc 100755 --- a/scripts/release/prepare-stable.js +++ b/scripts/release/prepare-stable.js @@ -11,7 +11,7 @@ const guessStableVersionNumbers = require('./prepare-stable-commands/guess-stabl const parseParams = require('./prepare-stable-commands/parse-params'); const printPrereleaseSummary = require('./shared-commands/print-prerelease-summary'); const testPackagingFixture = require('./shared-commands/test-packaging-fixture'); -const testSchedulerFixture = require('./shared-commands/test-scheduler-fixture'); +const testTracingFixture = require('./shared-commands/test-tracing-fixture'); const updateStableVersionNumbers = require('./prepare-stable-commands/update-stable-version-numbers'); const run = async () => { @@ -32,7 +32,7 @@ const run = async () => { if (!params.skipTests) { await testPackagingFixture(params); - await testSchedulerFixture(params); + await testTracingFixture(params); } await printPrereleaseSummary(params); diff --git a/scripts/release/shared-commands/test-scheduler-fixture.js b/scripts/release/shared-commands/test-tracing-fixture.js similarity index 96% rename from scripts/release/shared-commands/test-scheduler-fixture.js rename to scripts/release/shared-commands/test-tracing-fixture.js index 86ab94a5eefec..f8fc7ecc0321c 100644 --- a/scripts/release/shared-commands/test-scheduler-fixture.js +++ b/scripts/release/shared-commands/test-tracing-fixture.js @@ -43,7 +43,7 @@ const validate = async ({cwd}) => { const run = async ({cwd}) => { const errorMessage = await logPromise( validate({cwd}), - 'Verifying "scheduler" fixture' + 'Verifying "scheduler/tracing" fixture' ); if (errorMessage) { console.error(theme.error(errorMessage));