Skip to content

Commit bf3a2d0

Browse files
akaashakaash
authored andcommitted
Integration Test Fix
1 parent 02d0233 commit bf3a2d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dev/tests/integration/testsuite/Magento/Store/Model/MultiStoreTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public function testStoreSpecificEmailInFromHeader()
8787
$customerOne = $this->fixtures->get('customer1');
8888
$storeOne = $this->fixtures->get('store2');
8989
$customerOneData = [
90-
'email' => $customerOne->getEmail(),
90+
'email' => $customerOne->getData('email'),
9191
'storeId' => $storeOne->getData('store_id'),
9292
'storeEmail' => 'store_one@example.com'
9393
];
@@ -97,7 +97,7 @@ public function testStoreSpecificEmailInFromHeader()
9797
$customerTwo = $this->fixtures->get('customer2');
9898
$storeTwo = $this->fixtures->get('store3');
9999
$customerTwoData = [
100-
'email' => $customerTwo->getEmail(),
100+
'email' => $customerTwo->getData('email'),
101101
'storeId' => $storeTwo->getData('store_id'),
102102
'storeEmail' => 'store_two@example.com'
103103
];

0 commit comments

Comments
 (0)