Skip to content

Commit 1c51591

Browse files
authored
Fix linting
1 parent 3b1d28c commit 1c51591

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

testing/python/fixtures.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3965,12 +3965,12 @@ def argroot(request):
39653965
@pytest.fixture
39663966
def arg(argroot):
39673967
return argroot
3968-
3968+
39693969
# This should only be parametrized directly
39703970
@pytest.mark.parametrize("arg", [1])
39713971
def test_direct(arg):
39723972
assert arg == 1
3973-
3973+
39743974
# This should be parametrized based on the fixtures
39753975
def test_indirect(arg):
39763976
assert isinstance(arg, str)

0 commit comments

Comments
 (0)