Skip to content

Commit

Permalink
replace large number with infinite in tests for limit and isempty
Browse files Browse the repository at this point in the history
  • Loading branch information
itchyny committed Feb 26, 2022
1 parent 3313d05 commit 5189c10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3555,7 +3555,7 @@
- name: limit/2 function
args:
- -c
- '[limit(0,3,13; range(10000000000000))]'
- '[limit(0,3,13; range(infinite))]'
input: 'null'
expected: |
[0,1,2,0,1,2,3,4,5,6,7,8,9,10,11,12]
Expand Down Expand Up @@ -3602,7 +3602,7 @@
- name: isempty function
args:
- -c
- '[isempty(empty), isempty(range(10000000000000)), isempty(1,error("foo"))]'
- '[isempty(empty), isempty(range(infinite)), isempty(1,error("foo"))]'
input: 'null'
expected: |
[true,false,false]
Expand Down

0 comments on commit 5189c10

Please sign in to comment.