Skip to content
This repository has been archived by the owner on Aug 30, 2023. It is now read-only.

Commit

Permalink
Merge pull request #572 from dart-lang:adaptBrowserTest
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 524004731
  • Loading branch information
copybara-github committed Apr 13, 2023
2 parents a958db0 + 34e824c commit 99ed16f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/number_format_compact_web_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ void main() {
basic = intl.NumberFormat.currency(locale: 'he', symbol: '₪');
expect(basic.format(1234), '\u200F1,234.00\u00A0\u200F₪');
expect(_ecmaFormatNumber('he', 1234, style: 'currency', currency: 'ILS'),
'\u200F1,234.00\u00A0₪');
'\u200F1,234.00\u00A0\u200F₪');

var compact = intl.NumberFormat.compactCurrency(locale: 'he');
expect(compact.format(1234), 'ILS1.23K\u200F');
Expand Down

0 comments on commit 99ed16f

Please sign in to comment.