From 2de1311a08ec9d7f33c600376745e84902ebcdd6 Mon Sep 17 00:00:00 2001 From: Willie Ruemmele Date: Fri, 3 Nov 2023 10:26:58 -0600 Subject: [PATCH] test: fix --source-dir for force:source:deploy --- test/nuts/seeds/retrieve.sourcepath.seed.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/nuts/seeds/retrieve.sourcepath.seed.ts b/test/nuts/seeds/retrieve.sourcepath.seed.ts index a80bae638..a051a937a 100644 --- a/test/nuts/seeds/retrieve.sourcepath.seed.ts +++ b/test/nuts/seeds/retrieve.sourcepath.seed.ts @@ -23,7 +23,7 @@ context('Retrieve Sourcepath NUTs [name: %REPO_NAME%]', () => { nut: fileURLToPath(import.meta.url), }); await testkit.trackGlobs(testkit.packageGlobs); - await testkit.deploy({ args: `--source-dir ${testkit.packageNames.join(',')}` }); + await testkit.deploy({ args: `--sourcepath ${testkit.packageNames.join(',')}` }); }); after(async () => { @@ -41,7 +41,7 @@ context('Retrieve Sourcepath NUTs [name: %REPO_NAME%]', () => { const toRetrieve = path.normalize(testCase.toRetrieve); it(`should retrieve ${toRetrieve}`, async () => { await testkit.modifyLocalGlobs(testCase.toVerify); - await testkit.retrieve({ args: `--source-dir ${toRetrieve}` }); + await testkit.retrieve({ args: `--sourcepath ${toRetrieve}` }); await testkit.expect.filesToBeChanged(testCase.toVerify, testCase.toIgnore); }); }