summary refs log tree commit diff stats
path: root/tests/assert/tuserassert.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/assert/tuserassert.nim')
-rw-r--r--tests/assert/tuserassert.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/assert/tuserassert.nim b/tests/assert/tuserassert.nim
index 57b229ca9..7bb0a7fc0 100644
--- a/tests/assert/tuserassert.nim
+++ b/tests/assert/tuserassert.nim
@@ -2,12 +2,12 @@ discard """
   output: "x == 45ugh"
 """
 
-template myAssert(cond: expr) = 
+template myAssert(cond: expr) =
   when 3 <= 3:
     let c = cond.astToStr
     if not cond:
       echo c, "ugh"
-  
+
 var x = 454
 myAssert(x == 45)