Skip to content

Commit

Permalink
Fix after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
megheaiulian committed Aug 14, 2018
1 parent 5c95602 commit 0c7a246
Showing 1 changed file with 3 additions and 34 deletions.
37 changes: 3 additions & 34 deletions test/range.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,41 +48,8 @@
<script>
(function () {
'use strict';
const data = [
{
age: 17,
amount: { amount: '12.4', currency: 'USD' },
},
{
amount: { amount: 2 }
},
{
age: -11,
amount: { amount: 678, currency: 'AUD' }
},
{
age: 9,
amount: { amount: -8, currency: 'EUR' }
},
{
age: 5,
amount: { amount: '3450', currency: 'DKK' }
},
{
amount: { amount: 2015, currency: 'EUR' }
},
{
age: 46.7511, // 46,75xx
amount: { amount: 347, currency: 'USD' }
},
{
age: 46.768, // needed in maximumFractionDigits test
amount: { amount: 2581, currency: 'EUR' }
}
];

const domType = getDomType(),
data = [
data = [
{
age: 17,
amount: { amount: '12.4', currency: 'USD' },
Expand All @@ -106,9 +73,11 @@
amount: { amount: 2015, currency: 'EUR' }
},
{
age: 46.7511, // 46,75xx
amount: { amount: 347, currency: 'USD' }
},
{
age: 46.768, // needed in maximumFractionDigits test
amount: { amount: 2581, currency: 'EUR' }
}
];
Expand Down

0 comments on commit 0c7a246

Please sign in to comment.