From 9a50e453b27b69626fb13734312fa1795824998f Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 15 Jul 2024 22:41:22 +0530 Subject: [PATCH] Ensure defrag doesnt run when testing hole coalescing --- kitty_tests/graphics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty_tests/graphics.py b/kitty_tests/graphics.py index 27826aeec..77ec1fe56 100644 --- a/kitty_tests/graphics.py +++ b/kitty_tests/graphics.py @@ -343,7 +343,7 @@ class TestGraphics(BaseTest): # test hole coalescing reset() - for i in range(1, 6): + for i in range(1, 8): self.assertIsNone(add(i, str(i)*i)) dc.wait_for_write() remove(2)