From e896fd84cffadad1de05fe6b498b46c09926745a Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Fri, 19 May 2023 08:04:04 -0500 Subject: [PATCH] Change formula testing values to hopefully catch any other miscalculations --- tests/game/formulas.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/game/formulas.test.ts b/tests/game/formulas.test.ts index a36d099..5209ff8 100644 --- a/tests/game/formulas.test.ts +++ b/tests/game/formulas.test.ts @@ -13,7 +13,7 @@ import { InvertibleIntegralFormula } from "game/formulas/types"; type FormulaFunctions = keyof GenericFormula & keyof typeof Formula & keyof typeof Decimal; -const testValues = [-1, "0", Decimal.dOne] as const; +const testValues = [-2, "0", new Decimal(10.5)] as const; const invertibleZeroParamFunctionNames = [ "neg",