From b38ac8cd6674b868b2b75a715d0d8fa74bb1996d Mon Sep 17 00:00:00 2001 From: Dion Hulse Date: Wed, 28 Aug 2013 01:43:14 +0000 Subject: [PATCH] Unit Tests: Make it more compatible with PHPUnit when installed as a Phar, or, Composer package, by removing a duplicate require (Phpunit already includes the file itself). Props scribu Fixes #25065 git-svn-id: https://develop.svn.wordpress.org/trunk@25145 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/includes/bootstrap.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/includes/bootstrap.php b/tests/includes/bootstrap.php index c7a1244974..626b486841 100644 --- a/tests/includes/bootstrap.php +++ b/tests/includes/bootstrap.php @@ -4,8 +4,6 @@ */ -require_once 'PHPUnit/Autoload.php'; - $config_file_path = dirname( __FILE__ ) . '/../wp-tests-config.php'; if ( ! file_exists( $config_file_path ) ) { // Support having the config file one level up.