Skip to content

Commit

Permalink
assert more
Browse files Browse the repository at this point in the history
  • Loading branch information
dpdani committed Mar 14, 2024
1 parent bf6b034 commit bde315f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_atomic_dict.py
Original file line number Diff line number Diff line change
Expand Up @@ -568,11 +568,11 @@ def test_len_bounds():
def test_fast_iter():
d = AtomicDict(min_size=2 * 4 * 64 * 2) # = 1024

for _ in range(4):
for _ in range(64):
for p in range(4):
for _ in range(p * 128, p * 128 + 64):
d[_] = 1
for _ in range(64):
d[_] = 2
for _ in range(p * 128, p * 128 + 64):
d[_ + 64] = 2

def partition_1():
n = 0
Expand Down

0 comments on commit bde315f

Please sign in to comment.