Skip to content

Commit

Permalink
Make cycle detector test less likely to time out (#4605)
Browse files Browse the repository at this point in the history
Make cycle detector test less likely to time out  by decreasing the size and number of rings that need to be collected.
  • Loading branch information
dipinhora authored Feb 6, 2025
1 parent 285e023 commit ad10046
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/full-program-tests/cycle-detector/main.pony
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ class WatcherWaker is TimerNotify
true

actor Main
var _ring_size: U32 = 100
var _ring_count: U32 = 100
var _ring_size: U32 = 10
var _ring_count: U32 = 10
var _pass: USize = 10

new create(env: Env) =>
Expand Down

0 comments on commit ad10046

Please sign in to comment.