From f79f6c1807611ab8ac436e99d3e2e10c965bc283 Mon Sep 17 00:00:00 2001 From: Gerrit Niezen Date: Thu, 31 Oct 2024 10:55:14 +0000 Subject: [PATCH] fix typo --- test/lib/testCommonFunctions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lib/testCommonFunctions.js b/test/lib/testCommonFunctions.js index 7856a154e..dd45ac08e 100644 --- a/test/lib/testCommonFunctions.js +++ b/test/lib/testCommonFunctions.js @@ -189,7 +189,7 @@ describe('commonFunctions.js', () => { }); describe('toFixedNumber', () => { - test('to 4 digits', () => { + test('to 5 digits', () => { const value = (1.12345678).toFixedNumber(5); expect(value).to.equal(1.12346); });