diff --git a/cypress/integration/rounding.js b/cypress/integration/rounding.js index 1a9cfa685b..f778e009bb 100644 --- a/cypress/integration/rounding.js +++ b/cypress/integration/rounding.js @@ -49,7 +49,7 @@ context("Rounding behaviour", () => { let rounding_method = "Banker's Rounding"; expect(flt("0.5", 0, null, rounding_method)).eq(0); - expect(flt("0.3", null, rounding_method)).eq(0.3); + expect(flt("0.3", null, null, rounding_method)).eq(0.3); expect(flt("1.5", 0, null, rounding_method)).eq(2);