diff options
author | Araq <rumpf_a@web.de> | 2012-01-31 00:05:25 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-01-31 00:05:25 +0100 |
commit | e4a4588b48a444c199106356cd048fe05604650e (patch) | |
tree | 2e6147acb036c4e661dc40e99c5d6dc939ac7a7b /tests/run/tuserassert.nim | |
parent | a7e9ae55f4b3a71207c2cee2189e2cc584591d22 (diff) | |
download | Nim-e4a4588b48a444c199106356cd048fe05604650e.tar.gz |
small fixes for tests on windows
Diffstat (limited to 'tests/run/tuserassert.nim')
-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" |