Skip to content

Commit 6521a8e

Browse files
author
nsyvokonenko
committed
MAGETWO-37614: Stabilize story
- fix integrational Magento\Customer\Model\Resource\Customer\CollectionTest testAddNameToSelect
1 parent 828e5e8 commit 6521a8e

File tree

1 file changed

+1
-5
lines changed
  • dev/tests/integration/testsuite/Magento/Customer/Model/Resource/Customer

1 file changed

+1
-5
lines changed

dev/tests/integration/testsuite/Magento/Customer/Model/Resource/Customer/CollectionTest.php

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,6 @@ public function testAddNameToSelect()
2626
$this->_collection->addNameToSelect();
2727
$joinParts = $this->_collection->getSelect()->getPart(\Zend_Db_Select::FROM);
2828

29-
$this->assertArrayHasKey('at_prefix', $joinParts);
30-
$this->assertArrayHasKey('at_firstname', $joinParts);
31-
$this->assertArrayHasKey('at_middlename', $joinParts);
32-
$this->assertArrayHasKey('at_lastname', $joinParts);
33-
$this->assertArrayHasKey('at_suffix', $joinParts);
29+
$this->assertEmpty($joinParts);
3430
}
3531
}

0 commit comments

Comments
 (0)