summary refs log tree commit diff stats
path: root/tests/gc/refarrayleak.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/gc/refarrayleak.nim')
-rw-r--r--tests/gc/refarrayleak.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gc/refarrayleak.nim b/tests/gc/refarrayleak.nim
index 12c9145f8..57b489721 100644
--- a/tests/gc/refarrayleak.nim
+++ b/tests/gc/refarrayleak.nim
@@ -28,7 +28,7 @@ proc newArrayHolder: ref TArrayHolder =
 proc loop =
   for i in 0..10000:
     discard newArrayHolder()
-    
+
   if getOccupiedMem() > 300_000:
     echo "still a leak! ", getOccupiedMem()
     quit 1