diff options
author | tailor <cygnus@janrain.com> | 2007-01-15 21:24:31 +0000 |
---|---|---|
committer | tailor <cygnus@janrain.com> | 2007-01-15 21:24:31 +0000 |
commit | 011a949ff25bde99f1394739b66e7a0d54c18373 (patch) | |
tree | 531b68d297b4cffb4b1873f8086b03ab0f13a686 | |
parent | 26d8772d37a0eebbc10d554ee875ee00fd9f667c (diff) | |
download | php-openid-011a949ff25bde99f1394739b66e7a0d54c18373.zip php-openid-011a949ff25bde99f1394739b66e7a0d54c18373.tar.gz php-openid-011a949ff25bde99f1394739b66e7a0d54c18373.tar.bz2 |
[project @ Object syntax fix for php4.4.1]
-rw-r--r-- | Tests/Services/Yadis/Discover_Yadis.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tests/Services/Yadis/Discover_Yadis.php b/Tests/Services/Yadis/Discover_Yadis.php index 4c0d71e..5ab2690 100644 --- a/Tests/Services/Yadis/Discover_Yadis.php +++ b/Tests/Services/Yadis/Discover_Yadis.php @@ -110,9 +110,9 @@ class _TestCase extends PHPUnit_TestCase { function runTest() { if ($this->expected === null) { - $this->assertTrue( - Services_Yadis_Yadis::discover($this->input_url, - $this->fetcher)->isFailure()); + $result = Services_Yadis_Yadis::discover($this->input_url, + $this->fetcher); + $this->assertTrue($result->isFailure()); } else { $result = Services_Yadis_Yadis::discover($this->input_url, $this->fetcher); |