Skip to content

Commit dced646

Browse files
committed
MAGETWO-80908: Upgrade outdated libraries w/composer (minor versions) - recurring
- fix static
1 parent c5945e0 commit dced646

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

app/code/Magento/Tax/Test/Unit/Observer/UpdateProductOptionsObserverTest.php

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public function testUpdateProductOptions(
2424
$displayPriceExcludingTax
2525
) {
2626

27-
$frameworkObject= new \Magento\Framework\DataObject();
27+
$frameworkObject = new \Magento\Framework\DataObject();
2828
$frameworkObject->setAdditionalOptions([]);
2929

3030
$product=$this->createMock(\Magento\Catalog\Model\Product::class);
@@ -63,18 +63,18 @@ public function testUpdateProductOptions(
6363
->method('getEvent')
6464
->will($this->returnValue($eventObject));
6565

66-
$objectManager = new ObjectManager($this);
67-
$taxObserverObject = $objectManager->getObject(
68-
\Magento\Tax\Observer\UpdateProductOptionsObserver::class,
69-
[
70-
'taxData' => $taxData,
71-
'registry' => $registry,
72-
]
73-
);
66+
$objectManager = new ObjectManager($this);
67+
$taxObserverObject = $objectManager->getObject(
68+
\Magento\Tax\Observer\UpdateProductOptionsObserver::class,
69+
[
70+
'taxData' => $taxData,
71+
'registry' => $registry,
72+
]
73+
);
7474

75-
$taxObserverObject->execute($observerObject);
75+
$taxObserverObject->execute($observerObject);
7676

77-
$this->assertEquals($expected, $frameworkObject->getAdditionalOptions());
77+
$this->assertEquals($expected, $frameworkObject->getAdditionalOptions());
7878
}
7979

8080
/**

0 commit comments

Comments
 (0)