From d1e5acc3503cba14dc3629c35d687a0e53898e35 Mon Sep 17 00:00:00 2001 From: Constantin Gahr Date: Fri, 3 Mar 2023 09:33:11 +0100 Subject: [PATCH] fix skip condition --- tests/test_latexplotlib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_latexplotlib.py b/tests/test_latexplotlib.py index 412ca09..177c06c 100644 --- a/tests/test_latexplotlib.py +++ b/tests/test_latexplotlib.py @@ -249,7 +249,7 @@ def test_warns_if_figsize_used(self): lpl.subplots(1, 1, figsize=(3, 4)) @pytest.mark.skipif( - matplotlib.__version_info__ >= (3, 6), + matplotlib.__version_info__ < (3, 6), reason="requires matplotlib 3.6.0 or higher", ) def test_width_height_ratios(self):