Skip to content

Commit 68ccf63

Browse files
authored
Merge pull request #60 from wp-cli/fix-pathing-logic
Use correct number of `dirname()` calls to find the `vendor` folder
2 parents a61b89f + d45af62 commit 68ccf63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

features/bootstrap/FeatureContext.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function wpcli_bootstrap_behat_feature_context() {
1515
// wp-cli/wp-cli-tests is the root project.
1616
dirname( dirname( __DIR__ ) ) . '/vendor',
1717
// wp-cli/wp-cli-tests is a dependency.
18-
dirname( dirname( dirname( __DIR__ ) ) ),
18+
dirname( dirname( dirname( dirname( __DIR__ ) ) ) ),
1919
];
2020

2121
$vendor_folder = '';

0 commit comments

Comments
 (0)