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.
1 parent 859daae commit 204f4aeCopy full SHA for 204f4ae
app/code/Magento/Paypal/Test/Unit/Controller/Ipn/IndexTest.php
@@ -92,7 +92,7 @@ public function testIndexActionUnknownIpnException()
92
$this->requestMock->expects($this->once())->method('isPost')->willReturn(true);
93
$exception = new UnknownIpnException(__('Missing invoice field in IPN request.'));
94
$this->requestMock->expects($this->once())->method('getPostValue')->willThrowException($exception);
95
- $this->loggerMock->expects($this->once())->method('critical')->with($this->identicalTo($exception));
+ $this->loggerMock->expects($this->once())->method('warning')->with($this->identicalTo($exception));
96
$this->model->execute();
97
}
98
0 commit comments