Skip to content

Commit e08ca13

Browse files
committed
Remove VVV language
1 parent a8043b3 commit e08ca13

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

tests/autoload.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,19 @@
88
$config = getenv( 'WP_TESTS_CONFIG' );
99

1010
/**
11-
* Supports loading the wp-tests-config.php from a non VVV custom directory.
11+
* Supports loading the `wp-tests-config.php` from a custom directory.
1212
*/
1313
if ( file_exists( $config ) ) {
1414
include_once $config;
1515
return;
1616
}
1717

18-
// VVV Paths.
18+
// Attempt to find the server Path.
1919
$_path = dirname( __FILE__ );
2020
$config = substr( $_path, 0, strpos( $_path, 'public_html' ) + 11 ) . '/wp-tests-config.php';
2121

2222
/**
23-
* Supports loading the wp-tests-config.php from the `public_html` root directory of both the
24-
* `wordpress-default` and `wordpress-develop` sites, and any other custom site in the www directory.
23+
* Loads the `wp-tests-config.php` from the `public_html` root directory of a typical Vagrant install.
2524
*/
2625
if ( file_exists( $config ) ) {
2726
include_once $config;

0 commit comments

Comments
 (0)