diff options
author | Arron Woods <aw@chartblocks.com> | 2015-02-11 11:24:49 +0000 |
---|---|---|
committer | Arron Woods <aw@chartblocks.com> | 2015-02-11 11:24:56 +0000 |
commit | 8f5607a53e06c6d9567800dfe7e3cb94511634df (patch) | |
tree | e59839395e9cd05cabe9e2b822d1d0447e654a4c | |
parent | aff709498462a699a2e93a0e7116f4321d777ade (diff) | |
download | php-ssrs-1.0.4.zip php-ssrs-1.0.4.tar.gz php-ssrs-1.0.4.tar.bz2 |
Fix report output test1.0.4
-rwxr-xr-x | tests/library/SSRSTest/ReportTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/library/SSRSTest/ReportTest.php b/tests/library/SSRSTest/ReportTest.php index f46bd69..4c79897 100755 --- a/tests/library/SSRSTest/ReportTest.php +++ b/tests/library/SSRSTest/ReportTest.php @@ -128,7 +128,7 @@ class ReportTest extends \PHPUnit_Framework_TestCase { $ssrs = new Report('http://test/ReportServer'); $ssrs->setSoapExecution($soapMock); - $expected = new ReportOutput($testReport); + $expected = new \SSRS\Object\ExecutionInfo($testReport); $result = $ssrs->loadReport('/Reports/Reference_Report'); $this->assertEquals($expected, $result); |