Changeset 40116 for branches/4.7/tests/phpunit/includes/bootstrap.php
- Timestamp:
- 02/24/2017 10:33:05 PM (8 years ago)
- Location:
- branches/4.7
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.7
- Property svn:mergeinfo changed
/trunk merged: 40058,40061,40065-40066,40077,40104
- Property svn:mergeinfo changed
-
branches/4.7/tests/phpunit/includes/bootstrap.php
r39086 r40116 19 19 global $wpdb, $current_site, $current_blog, $wp_rewrite, $shortcode_tags, $wp, $phpmailer, $wp_theme_directories; 20 20 21 if ( !is_readable( $config_file_path ) ) { 22 die( "ERROR: wp-tests-config.php is missing! Please use wp-tests-config-sample.php to create a config file.\n" ); 21 if ( ! is_readable( $config_file_path ) ) { 22 echo "ERROR: wp-tests-config.php is missing! Please use wp-tests-config-sample.php to create a config file.\n"; 23 exit( 1 ); 23 24 } 24 25 require_once $config_file_path;
Note: See TracChangeset
for help on using the changeset viewer.