From 4bd1010a05379e6101608e99ccd0903182d95156 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Mon, 2 Jan 2012 19:04:30 +0100 Subject: [PATCH] Fix whitespace. --- PHPUnit/Util/GlobalState.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/PHPUnit/Util/GlobalState.php b/PHPUnit/Util/GlobalState.php index 3ec307ce6d0..4263b3493af 100644 --- a/PHPUnit/Util/GlobalState.php +++ b/PHPUnit/Util/GlobalState.php @@ -408,8 +408,11 @@ public static function phpunitFiles() } foreach (self::$phpunitFiles as $key => $value) { - self::$phpunitFiles[$key] = str_replace('/', DIRECTORY_SEPARATOR, $value); + self::$phpunitFiles[$key] = str_replace( + '/', DIRECTORY_SEPARATOR, $value + ); } + self::$phpunitFiles = array_flip(self::$phpunitFiles); }