Change formula testing values to hopefully catch any other miscalculations
This commit is contained in:
parent
a5efed6e4a
commit
e896fd84cf
1 changed files with 1 additions and 1 deletions
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue