Skip to content

Commit

Permalink
$this->name is no longer protected, access it using the $this->getNam…
Browse files Browse the repository at this point in the history
…e() method.
  • Loading branch information
sebastianbergmann committed Jan 14, 2011
1 parent 5b43169 commit 5ad6619
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PHPUnit/Extensions/SeleniumTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -406,10 +406,10 @@ protected function runTest()
{
$this->start();

if (!is_file($this->name)) {
if (!is_file($this->getName(FALSE))) {
parent::runTest();
} else {
$this->runSelenese($this->name);
$this->runSelenese($this->getName(FALSE));
}

if (!empty($this->verificationErrors)) {
Expand Down

0 comments on commit 5ad6619

Please sign in to comment.