Skip to content

Commit 352bf4f

Browse files
Fix static
1 parent 36c006f commit 352bf4f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

app/code/Magento/Eav/Test/Unit/Model/Entity/Collection/AbstractCollectionTest.php

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
/**
99
* AbstractCollection test
1010
*
11+
* Test for AbstractCollection class
1112
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
1213
*/
1314
class AbstractCollectionTest extends \PHPUnit\Framework\TestCase
@@ -237,7 +238,11 @@ public function testAttributeIdIsInt($values)
237238

238239
$_selectAttributesActualValue = $this->readAttribute($this->model, '_selectAttributes');
239240

240-
$this->assertAttributeEquals([self::ATTRIBUTE_CODE => self::ATTRIBUTE_ID_STRING], '_selectAttributes', $this->model);
241+
$this->assertAttributeEquals(
242+
[self::ATTRIBUTE_CODE => self::ATTRIBUTE_ID_STRING],
243+
'_selectAttributes',
244+
$this->model
245+
);
241246
$this->assertSame($_selectAttributesActualValue[self::ATTRIBUTE_CODE], self::ATTRIBUTE_ID_INT);
242247
}
243248

0 commit comments

Comments
 (0)