We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 24148b7 + d994a3f commit d6a1bedCopy full SHA for d6a1bed
tests/Omnipay/Common/Message/AbstractRequestTest.php
@@ -16,7 +16,7 @@ class AbstractRequestTest extends TestCase
16
17
public function setUp()
18
{
19
- $this->request = m::mock('\Omnipay\Common\Message\AbstractRequest')->makePartial();
+ $this->request = new AbstractRequestTest_MockAbstractRequest($this->getHttpClient(), $this->getHttpRequest());
20
$this->request->initialize();
21
}
22
@@ -467,6 +467,7 @@ public function testNoCurrencyReturnedIfCurrencyNotSet()
467
468
public function testSend()
469
470
+ $this->request = m::mock('\Omnipay\Common\Message\AbstractRequest')->makePartial();
471
$response = m::mock('\Omnipay\Common\Message\ResponseInterface');
472
$data = array('request data');
473
0 commit comments