diff options
author | Araq <rumpf_a@web.de> | 2014-08-14 22:22:04 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-08-14 22:22:04 +0200 |
commit | 4ab56d6be02de18d5da71f97918ff7d3c78e8340 (patch) | |
tree | 42b358e982f663f62bc9610f0ae3bf460267fcbc /tests/assert | |
parent | 06ad50b671f4d236ac558f6fe71fc374f80ead2a (diff) | |
download | Nim-4ab56d6be02de18d5da71f97918ff7d3c78e8340.tar.gz |
some minor fixes
Diffstat (limited to 'tests/assert')
-rw-r--r-- | tests/assert/tuserassert.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/assert/tuserassert.nim b/tests/assert/tuserassert.nim index 8710ee486..57b229ca9 100644 --- a/tests/assert/tuserassert.nim +++ b/tests/assert/tuserassert.nim @@ -3,7 +3,7 @@ discard """ """ template myAssert(cond: expr) = - when rand(3) < 3: + when 3 <= 3: let c = cond.astToStr if not cond: echo c, "ugh" |