From 2c3198d55523c4132430228ae11a2d50dd626ec4 Mon Sep 17 00:00:00 2001 From: Lucia Velasco Date: Fri, 2 Mar 2018 22:11:22 +0000 Subject: [PATCH] Fixes pre-existing test to successfully round up --- test/modules/toNearest.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/modules/toNearest.js b/test/modules/toNearest.js index 7ee527c..ed3b5e1 100644 --- a/test/modules/toNearest.js +++ b/test/modules/toNearest.js @@ -156,7 +156,7 @@ T('toNearest', function () { Decimal.rounding = 1; t('83105511539', '83105511539.5', void 0, 11); - t('3847560', '3847561.00000749', 10, 11, 0); + t('3847570', '3847561.00000749', 10, 11, 0); t('42840000000000000', '42835000000000001', '1e+13', 2, 0); t('42840000000000000', '42835000000000001', '1e+13', 2, 1); t('42840000000000000', '42835000000000000.0002', '1e+13', 200, 0);