Skip to content

Commit f9bd674

Browse files
committed
Fix typo in variable name
1 parent 6ccd693 commit f9bd674

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/code/Magento/Webapi/Test/Unit/Model/Plugin/ManagerTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,10 @@ public function testAfterProcessIntegrationConfigSuccess()
113113
]
114114
)
115115
);
116-
$firstInegrationId = 1;
116+
$firstIntegrationId = 1;
117117
$integrationsData1 = new \Magento\Framework\DataObject(
118118
[
119-
'id' => $firstInegrationId,
119+
'id' => $firstIntegrationId,
120120
Integration::NAME => 'TestIntegration1',
121121
Integration::EMAIL => 'test-integration1@magento.com',
122122
Integration::ENDPOINT => 'http://endpoint.com',
@@ -168,9 +168,9 @@ public function testAfterProcessConfigBasedIntegrationsNoIntegrations()
168168
*/
169169
public function testAfterProcessConfigBasedIntegrationsSuccess()
170170
{
171-
$firstInegrationId = 1;
171+
$firstIntegrationId = 1;
172172
$integrationsData1 = [
173-
'id' => $firstInegrationId,
173+
'id' => $firstIntegrationId,
174174
Integration::NAME => 'TestIntegration1',
175175
Integration::EMAIL => 'test-integration1@magento.com',
176176
Integration::ENDPOINT => 'http://endpoint.com',

0 commit comments

Comments
 (0)