From 038054b3e5fdec0a499f0e25f571f88016565557 Mon Sep 17 00:00:00 2001 From: Vincenzo Eduardo Padulano Date: Tue, 11 Jun 2024 09:10:28 +0200 Subject: [PATCH] [PyROOT][NFC] Relax memory test At least on Windows 4KB was sometimes triggering a failure, increase to 16KB threshold as it still should not represent an issue. --- bindings/pyroot/pythonizations/test/memory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/pyroot/pythonizations/test/memory.py b/bindings/pyroot/pythonizations/test/memory.py index 3d9f27118b0bb..0cbdb809c09d1 100644 --- a/bindings/pyroot/pythonizations/test/memory.py +++ b/bindings/pyroot/pythonizations/test/memory.py @@ -39,7 +39,7 @@ class foo { gc.collect() after = ROOT.get_rss_MB() delta = after - before - self.assertLess(delta, 4) + self.assertLess(delta, 16) if __name__ == '__main__':