From c1ab13aedde4c5dfb537f1b0f793164e6418d541 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 27 Nov 2023 17:19:43 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/conftest.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index f4d2bb8..e364a26 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -24,15 +24,13 @@ def version(request): params=[ pytest.param( "forward", - marks=pytest.mark.skipif( - os.sep == '\\', reason=r"Output differs on platforms where os.sep == '\\'" - ) + marks=pytest.mark. + skipif(os.sep == '\\', reason=r"Output differs on platforms where os.sep == '\\'") ), pytest.param( "backward", - marks=pytest.mark.skipif( - os.sep == '/', reason="Output differs on platforms where os.sep == '/'" - ) + marks=pytest.mark. + skipif(os.sep == '/', reason="Output differs on platforms where os.sep == '/'") ), ] )