Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Feb 19, 2024
1 parent 5fe46c4 commit 8796115
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 == '/'")
),
]
)
Expand Down

0 comments on commit 8796115

Please sign in to comment.