Skip to content

Commit

Permalink
Fix testing.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jack Krielen committed Apr 16, 2020
1 parent 8f1020a commit cfb762d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ public function testGetFormattedPrices()

$this->localeFormatMock->expects($this->atLeastOnce())
->method('getNumber')
->withConsecutive([1000],[500], [1000], [500])
->will($this->onConsecutiveCalls(1000,500, 1000, 500));
->withConsecutive([1000], [500], [1000], [500])
->will($this->onConsecutiveCalls(1000, 500, 1000, 500));

$this->assertEquals($expected, $this->model->getFormattedPrices($priceInfoMock));
}
Expand Down

0 comments on commit cfb762d

Please sign in to comment.