summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xtests/library/SSRS/Soap/NTLMTest.php5
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 {
}
}
-?>