Skip to content

Commit

Permalink
Fix whitespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Jan 2, 2012
1 parent 02e391c commit 4bd1010
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion PHPUnit/Util/GlobalState.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit 4bd1010

Please sign in to comment.