Skip to content

Commit

Permalink
StyleCI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
denisdulici committed Dec 20, 2017
1 parent f339014 commit dc6b42d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/MoneyTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -268,10 +268,10 @@ public function testFormatLocale($expected, $cur, $amount, $locale, $message)
public function providesFormatLocale()
{
return [
['₺1.548,48', 'TRY', 154848.25895, 'tr_TR', 'Example: '.__LINE__],
['₺1.548,48', 'TRY', 154848.25895, 'tr_TR', 'Example: ' . __LINE__],
['TR₺1,548.48', 'TRY', 154848.25895, 'tr_TR', 'Example: ' . __LINE__],
['US$0,48', 'USD', 48.25, 'en_US', 'Example: '.__LINE__],
['$1,548.48', 'USD', 154848.25895, 'en_US', 'Example: '.__LINE__],
['US$0,48', 'USD', 48.25, 'en_US', 'Example: ' . __LINE__],
['$1,548.48', 'USD', 154848.25895, 'en_US', 'Example: ' . __LINE__],
];
}

Expand Down Expand Up @@ -313,10 +313,10 @@ public function testFormat($expected, $cur, $amount, $message)
public function providesFormat()
{
return [
['₺1.548,48', 'TRY', 154848.25895, 'Example: '.__LINE__],
['₺1.548,48', 'TRY', 154848.25895, 'Example: '.__LINE__],
['$0.48', 'USD', 48.25, 'Example: '.__LINE__],
['$1,548.48', 'USD', 154848.25895, 'Example: '.__LINE__],
['₺1.548,48', 'TRY', 154848.25895, 'Example: ' . __LINE__],
['₺1.548,48', 'TRY', 154848.25895, 'Example: ' . __LINE__],
['$0.48', 'USD', 48.25, 'Example: ' . __LINE__],
['$1,548.48', 'USD', 154848.25895, 'Example: ' . __LINE__],
];
}
}

0 comments on commit dc6b42d

Please sign in to comment.