Skip to content

Commit

Permalink
Fixed test.
Browse files Browse the repository at this point in the history
  • Loading branch information
amyjko committed Sep 18, 2023
1 parent 5d03113 commit 8c3fef0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/values/NumberValue.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ test.each([
['1.max(0)', '1'],
['1.max(2 3)', '3'],
['1.max(0 -1)', '1'],
['1m.max()', '1m'],
['1m.max()', '!ValueException'],
])('Expect %s to be %s', (code, value) => {
expect(evaluateCode(code)?.toString()).toBe(value);
});
Expand Down

0 comments on commit 8c3fef0

Please sign in to comment.