Skip to content
This repository was archived by the owner on Dec 19, 2019. It is now read-only.

Commit b327246

Browse files
MAGETWO-75452: Fix Issue: “Asymmetric transaction rollback error” if commit callbacks throw exceptions #9955
1 parent 2f929ea commit b327246

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ protected function setUp()
3333
$this->serializerMock = $this->createMock(Json::class);
3434
$this->loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
3535
$this->abstractResource = $objectManager->getObject(AbstractResourceStub::class);
36-
$objectManager->setBackwardCompatibleProperty($this->abstractResource,'serializer',$this->serializerMock);
37-
$objectManager->setBackwardCompatibleProperty($this->abstractResource,'_logger',$this->loggerMock);
36+
$objectManager->setBackwardCompatibleProperty($this->abstractResource, 'serializer', $this->serializerMock);
37+
$objectManager->setBackwardCompatibleProperty($this->abstractResource, '_logger', $this->loggerMock);
3838
}
3939

4040
/**

0 commit comments

Comments
 (0)