diff --git tests/phpunit/includes/bootstrap.php tests/phpunit/includes/bootstrap.php
index 460d5fbeba..b774512a4e 100644
|
|
|
$phpmailer = new MockPHPMailer( true ); |
| 66 | 66 | if ( ! defined( 'WP_DEFAULT_THEME' ) ) { |
| 67 | 67 | define( 'WP_DEFAULT_THEME', 'default' ); |
| 68 | 68 | } |
| 69 | | $wp_theme_directories = array( DIR_TESTDATA . '/themedir1' ); |
| | 69 | $wp_theme_directories = array(); |
| | 70 | |
| | 71 | if ( file_exists( DIR_TESTDATA . '/themedir1' ) ) { |
| | 72 | $wp_theme_directories[] = DIR_TESTDATA . '/themedir1'; |
| | 73 | } |
| 70 | 74 | |
| 71 | 75 | system( WP_PHP_BINARY . ' ' . escapeshellarg( dirname( __FILE__ ) . '/install.php' ) . ' ' . escapeshellarg( $config_file_path ) . ' ' . $multisite, $retval ); |
| 72 | 76 | if ( 0 !== $retval ) { |