Skip to content

Commit e040bec

Browse files
committed
changes necessary for check to pass
1 parent 77fca8d commit e040bec

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/test/container-features/lifecycleHooks.test.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -406,10 +406,10 @@ describe('Feature lifecycle hooks', function () {
406406
assert.match(containerUpStandardError, /Running the postAttachCommand from devcontainer.json/);
407407

408408
assert.match(outputOfExecCommand, /helperScript.devContainer.parallel_postCreateCommand_1.testMarker/);
409-
assert.match(containerUpStandardError, /Running parallel1 from devcontainer.json.../);
409+
assert.match(containerUpStandardError, /Running parallel1 of postCreateCommand from devcontainer.json.../);
410410

411411
assert.match(outputOfExecCommand, /helperScript.devContainer.parallel_postCreateCommand_2.testMarker/);
412-
assert.match(containerUpStandardError, /Running parallel2 from devcontainer.json.../);
412+
assert.match(containerUpStandardError, /Running parallel2 of postCreateCommand from devcontainer.json.../);
413413

414414
// Since lifecycle scripts are executed relative to the workspace folder,
415415
// to run a script bundled with the Feature, the Feature author needs to copy that script to a persistent directory.
@@ -429,10 +429,10 @@ describe('Feature lifecycle hooks', function () {
429429
assert.match(containerUpStandardError, /Running the postAttachCommand from Feature '\.\/rabbit'/);
430430

431431
assert.match(outputOfExecCommand, /helperScript.rabbit.parallel_postCreateCommand_1.testMarker/);
432-
assert.match(containerUpStandardError, /Running parallel1 from Feature '\.\/rabbit'/);
432+
assert.match(containerUpStandardError, /Running parallel1 of postCreateCommand from Feature '\.\/rabbit'/);
433433

434434
assert.match(outputOfExecCommand, /helperScript.rabbit.parallel_postCreateCommand_2.testMarker/);
435-
assert.match(containerUpStandardError, /Running parallel2 from Feature '\.\/rabbit'/);
435+
assert.match(containerUpStandardError, /Running parallel2 of postCreateCommand from Feature '\.\/rabbit'/);
436436

437437

438438
// -- 'Otter' Feature
@@ -449,10 +449,10 @@ describe('Feature lifecycle hooks', function () {
449449
assert.match(containerUpStandardError, /Running the postAttachCommand from Feature '\.\/otter'/);
450450

451451
assert.match(outputOfExecCommand, /helperScript.otter.parallel_postCreateCommand_1.testMarker/);
452-
assert.match(containerUpStandardError, /Running parallel1 from Feature '\.\/otter'/);
452+
assert.match(containerUpStandardError, /Running parallel1 of postCreateCommand from Feature '\.\/otter'/);
453453

454454
assert.match(outputOfExecCommand, /helperScript.otter.parallel_postCreateCommand_2.testMarker/);
455-
assert.match(containerUpStandardError, /Running parallel2 from Feature '\.\/otter'/);
455+
assert.match(containerUpStandardError, /Running parallel2 of postCreateCommand from Feature '\.\/otter'/);
456456

457457
// -- Assert that at no point did logging the lifecycle hook fail.
458458
assert.notMatch(containerUpStandardError, /Running the (.*) from \?\?\?/);

0 commit comments

Comments
 (0)