Skip to content

Commit cfb762d

Browse files
author
Jack Krielen
committed
Fix testing.
1 parent 8f1020a commit cfb762d

File tree

1 file changed

+2
-2
lines changed
  • app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/Configurable/Variations

1 file changed

+2
-2
lines changed

app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/Configurable/Variations/PricesTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ public function testGetFormattedPrices()
5757

5858
$this->localeFormatMock->expects($this->atLeastOnce())
5959
->method('getNumber')
60-
->withConsecutive([1000],[500], [1000], [500])
61-
->will($this->onConsecutiveCalls(1000,500, 1000, 500));
60+
->withConsecutive([1000], [500], [1000], [500])
61+
->will($this->onConsecutiveCalls(1000, 500, 1000, 500));
6262

6363
$this->assertEquals($expected, $this->model->getFormattedPrices($priceInfoMock));
6464
}

0 commit comments

Comments
 (0)