diff options
Diffstat (limited to 'tests/run')
-rw-r--r-- | tests/run/tuserassert.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run/tuserassert.nim b/tests/run/tuserassert.nim index cf12c4e8b..80748189f 100644 --- a/tests/run/tuserassert.nim +++ b/tests/run/tuserassert.nim @@ -3,7 +3,7 @@ discard """ """ template myAssert(cond: expr) = - when rand(3) < 2: + when rand(3) < 3: let c = cond.astToStr if not cond: echo c, "ugh" |