diff options
-rw-r--r-- | tests/fragmentation/tfragment_gc.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fragmentation/tfragment_gc.nim b/tests/fragmentation/tfragment_gc.nim index 1781f6610..92367a6dd 100644 --- a/tests/fragmentation/tfragment_gc.nim +++ b/tests/fragmentation/tfragment_gc.nim @@ -24,7 +24,7 @@ let occupiedOk = occ < 64 * 1024 * 1024 if not occupiedOk: echo "occupied ", formatSize(occ) echo "occupied ok: ", occupiedOk -let totalOk = total < 210 * 1024 * 1024 +let totalOk = total < 230 * 1024 * 1024 if not totalOk: echo "total peak memory ", formatSize(total) echo "total ok: ", totalOk |