Skip to content

Commit

Permalink
fix skip condition
Browse files Browse the repository at this point in the history
  • Loading branch information
Constantin Gahr committed Mar 3, 2023
1 parent 754d503 commit d1e5acc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_latexplotlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit d1e5acc

Please sign in to comment.