Skip to content

Commit

Permalink
Fix range_query_test.py
Browse files Browse the repository at this point in the history
  • Loading branch information
AlfredChester committed Dec 19, 2024
1 parent c468945 commit 85f535a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cyaron/tests/range_query_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def test_allow_equal_v2_no_throw(self):

def test_less_v1(self):
dimension = random.randint(1, 10)
limits = Vector.random(dimension, [(1, 1000)]) # n1, n2 ...
limits = Vector.random(dimension, [(2, 1000)]) # n1, n2 ...
Q = RangeQuery.random(10**5, limits, RangeQueryRandomMode.less)
self.assertEqual(len(Q), 10**5)
for i in range(10**5):
Expand Down

0 comments on commit 85f535a

Please sign in to comment.