1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-10 01:25:34 +00:00

Remove duplicated fixture

This commit is contained in:
Jair Henrique
2023-05-10 18:17:41 -03:00
parent 58329f812b
commit 77da67ef0a
4 changed files with 7 additions and 13 deletions

View File

@@ -0,0 +1,7 @@
import pytest
@pytest.fixture(params=["https", "http"])
def scheme(request):
"""Fixture that returns both http and https."""
return request.param