We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2af74d1 commit 4e79667Copy full SHA for 4e79667
tests/test_groups.py
@@ -153,7 +153,7 @@ def test_groupby_large_random_integers(seed):
153
chunks = ([random.sample(range(n0), random.randint(1, n0))] +
154
[random.sample([0] * 100 + list(range(256)), random.randint(1, 20))
155
for i in range(ngrps1)])
156
- n = int(random.expovariate(0.0001))
+ n = int(random.expovariate(0.0001)) + 10
157
sample = [sum(random.choice(chunks[i]) << (8*i) for i in range(len(chunks)))
158
for _ in range(n)]
159
nuniques = len(set(sample))
0 commit comments