summary refs log tree commit diff stats
path: root/tests/assert/tassert.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/assert/tassert.nim')
-rw-r--r--tests/assert/tassert.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/assert/tassert.nim b/tests/assert/tassert.nim
index 0ea8d2034..b3df30bd1 100644
--- a/tests/assert/tassert.nim
+++ b/tests/assert/tassert.nim
@@ -5,7 +5,7 @@ discard """
 """
 # test assert and exception handling
 
-proc callB() = assert(False)
+proc callB() = assert(false)
 proc callA() = callB()
 proc callC() = callA()