From cba908b40315a4cea74c024aeb302e34c40f8c3f Mon Sep 17 00:00:00 2001 From: Andrew Fennell Date: Mon, 2 May 2022 10:20:48 -0500 Subject: [PATCH] Raised macosx memory leak threshold by 1000000 --- lib/matplotlib/tests/test_backends_interactive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/matplotlib/tests/test_backends_interactive.py b/lib/matplotlib/tests/test_backends_interactive.py index 3157c6b12000..86ada2730bb6 100644 --- a/lib/matplotlib/tests/test_backends_interactive.py +++ b/lib/matplotlib/tests/test_backends_interactive.py @@ -549,7 +549,7 @@ def test_figure_leak_20490(env, time_mem): # threshold. pause_time, acceptable_memory_leakage = time_mem if env["MPLBACKEND"] == "macosx": - acceptable_memory_leakage += 10_000_000 + acceptable_memory_leakage += 11_000_000 result = _run_helper( _test_figure_leak, str(pause_time), timeout=_test_timeout, **env