Skip to content

Commit f4ddbdc

Browse files
committed
Using the correct composer (to use correct version) in test
1 parent 7f56470 commit f4ddbdc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Command/UpdateRecipesCommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function testCommandUpdatesRecipe()
7575
(new Process(['git', 'add', '-A'], FLEX_TEST_DIR))->mustRun();
7676
(new Process(['git', 'commit', '-m', 'setup of original console files'], FLEX_TEST_DIR))->mustRun();
7777

78-
(new Process(['composer', 'install'], FLEX_TEST_DIR))->mustRun();
78+
(new Process([__DIR__.'/../../vendor/bin/composer', 'install'], FLEX_TEST_DIR))->mustRun();
7979

8080
$command = $this->createCommandUpdateRecipes();
8181
$command->execute(['package' => 'symfony/console']);

0 commit comments

Comments
 (0)