summary refs log tree commit diff stats
path: root/tests/stdlib/tmath.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/stdlib/tmath.nim')
-rw-r--r--tests/stdlib/tmath.nim6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/stdlib/tmath.nim b/tests/stdlib/tmath.nim
index fc9486093..1ac9c8092 100644
--- a/tests/stdlib/tmath.nim
+++ b/tests/stdlib/tmath.nim
@@ -23,13 +23,13 @@ suite "random int":
       rand = random(100..1000)
       check rand < 1000
       check rand >= 100
-  test "randomize() again gives new numbers":      
+  test "randomize() again gives new numbers":
     randomize()
     var rand1 = random(1000000)
     randomize()
     var rand2 = random(1000000)
     check rand1 != rand2
-    
+
 
 suite "random float":
   test "there might be some randomness":
@@ -52,7 +52,7 @@ suite "random float":
       rand = random(100.0..1000.0)
       check rand < 1000.0
       check rand >= 100.0
-  test "randomize() again gives new numbers":      
+  test "randomize() again gives new numbers":
     randomize()
     var rand1:float = random(1000000.0)
     randomize()