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 db78959 commit 431b293Copy full SHA for 431b293
app/code/Magento/Integration/Test/Unit/Helper/Oauth/ConsumerTest.php
@@ -124,6 +124,7 @@ public function testCreateConsumer()
124
$secret = $this->_generateRandomString(\Magento\Framework\Oauth\Helper\Oauth::LENGTH_CONSUMER_SECRET);
125
126
$consumerData = ['name' => 'Integration Name', 'key' => $key, 'secret' => $secret];
127
+ $this->_consumerMock->expects($this->once())->method('setData')->will($this->returnSelf());
128
$this->_consumerMock->expects($this->once())->method('save')->will($this->returnSelf());
129
130
/** @var \Magento\Integration\Model\Oauth\Consumer $consumer */
0 commit comments