Skip to content

Commit

Permalink
Changed settle count to a safer value.
Browse files Browse the repository at this point in the history
  • Loading branch information
tilk committed Sep 25, 2024
1 parent 1b11553 commit 60480d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/transactron/lib/test_transaction_lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,11 +179,11 @@ def reader_req():

def reader_resp():
for cycle in range(test_count):
for _ in range(2):
for _ in range(3):
yield Settle()
while not read_req_queue:
yield from self.random_wait(reader_resp_rand or 1, min_cycle_cnt=1)
for _ in range(2):
for _ in range(3):
yield Settle()
d = read_req_queue.popleft()
assert (yield from m.read_resp.call()) == {"data": d}
Expand Down

0 comments on commit 60480d1

Please sign in to comment.