Skip to content

Commit 6bc70d7

Browse files
committed
ACP2E-1840: fix failing static and unit tests
1 parent b22d46f commit 6bc70d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Page/Query/PageIdsListTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,11 @@ public function testExecute($blockEntityIds, $pageEntityIds, $blockIdentifiers)
8181
->with()
8282
->willReturn($this->connectionMock);
8383

84-
$this->pageIdsList = new PageIdsList(
84+
$pageIdsList = new PageIdsList(
8585
$this->resourceMock
8686
);
8787

88-
$this->assertSame($pageEntityIds, $this->pageIdsList->execute($blockEntityIds));
88+
$this->assertSame($pageEntityIds, $pageIdsList->execute($blockEntityIds));
8989
}
9090

9191
/**

0 commit comments

Comments
 (0)