Skip to content

Commit 7b97ed4

Browse files
committed
Fixed typo in unit test introduced by accident in e0c61de
1 parent ca30c47 commit 7b97ed4

File tree

1 file changed

+1
-2
lines changed
  • app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Backend

1 file changed

+1
-2
lines changed

app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Backend/SortbyTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ class SortbyTest extends TestCase
4545
*/
4646
protected function setUp(): void
4747
{
48-
$this->markTestSkipped('Due to MAGETWO-48956');
4948
$this->objectHelper = new ObjectManager($this);
5049
$this->scopeConfig = $this->getMockForAbstractClass(ScopeConfigInterface::class);
5150
$this->model = $this->objectHelper->getObject(
@@ -217,7 +216,7 @@ public function testValidateUnique(): void
217216
{
218217
$this->attribute->expects($this->any())->method('getName')->willReturn('attribute_name');
219218
$this->attribute->method('getIsRequired');
220-
$this->attribute§('getIsUnique')
219+
$this->attribute->method('getIsUnique')
221220
->willReturn(true);
222221

223222
$entityMock = $this->getMockForAbstractClass(

0 commit comments

Comments
 (0)