diff options
author | arron.woods <arron.woods@deae1e92-32f9-c189-e222-5b9b5081a27a> | 2011-05-19 12:17:28 +0000 |
---|---|---|
committer | arron.woods <arron.woods@deae1e92-32f9-c189-e222-5b9b5081a27a> | 2011-05-19 12:17:28 +0000 |
commit | 9cc850e2f2f141ec8daf17e68c63543082fc0e5b (patch) | |
tree | fbafcb19884c67e7f0b0d9726b38fb6d6d98380e | |
parent | 6c5361dc65a947ead1b31d13f65128544e667102 (diff) | |
download | php-ssrs-9cc850e2f2f141ec8daf17e68c63543082fc0e5b.zip php-ssrs-9cc850e2f2f141ec8daf17e68c63543082fc0e5b.tar.gz php-ssrs-9cc850e2f2f141ec8daf17e68c63543082fc0e5b.tar.bz2 |
NTLM test fix following method name change
-rwxr-xr-x | tests/library/SSRS/Soap/NTLMTest.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/library/SSRS/Soap/NTLMTest.php b/tests/library/SSRS/Soap/NTLMTest.php index b3116f6..1fe2897 100755 --- a/tests/library/SSRS/Soap/NTLMTest.php +++ b/tests/library/SSRS/Soap/NTLMTest.php @@ -25,10 +25,10 @@ class SSRS_Soap_NTLMTest extends PHPUnit_Framework_TestCase { ) ); - $SOAP = $this->getMock('SSRS_Soap_NTLM', array('_callCurl'), $arguments); + $SOAP = $this->getMock('SSRS_Soap_NTLM', array('callCurl'), $arguments); $SOAP->expects($this->once()) - ->method('_callCurl') + ->method('callCurl') ->with($this->equalTo('http://localhost/soap/ms.wsdl.xml')); $SOAP->fetchWSDL(); @@ -104,4 +104,3 @@ class SSRS_Soap_NTLMTest extends PHPUnit_Framework_TestCase { } } -?> |