Skip to content

Commit

Permalink
Better fix for #466.
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Jan 27, 2012
1 parent 0a9f84c commit 2baaf1a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions ChangeLog.markdown
Expand Up @@ -7,6 +7,7 @@ PHPUnit 3.6.10
--------------

* Tests for which the execution is aborted due to a timeout are no longer shown as incomplete but as an error instead.
* Fixed the fix for #466.

PHPUnit 3.6.9
-------------
Expand Down
5 changes: 5 additions & 0 deletions PHPUnit/Util/Configuration.php
Expand Up @@ -857,6 +857,11 @@ protected function getTestSuite(DOMElement $testSuiteNode)

// Get the absolute path to the file
$file = $fileIteratorFacade->getFilesAsArray($file);

if (!isset($file[0])) {
continue;
}

$file = $file[0];

if ($fileNode->hasAttribute('phpVersion')) {
Expand Down

0 comments on commit 2baaf1a

Please sign in to comment.