Merge pull request #6914 from nicoddemus/revert-6330

Revert "[parametrize] enforce explicit argnames declaration (#6330)"
This commit is contained in:
Bruno Oliveira
2020-03-13 10:18:06 -03:00
committed by Bruno Oliveira
parent 703c948294
commit 010e711971
6 changed files with 9 additions and 101 deletions

View File

@@ -463,7 +463,7 @@ class TestFunction:
return '3'
@pytest.mark.parametrize('fix2', ['2'])
def test_it(fix1, fix2):
def test_it(fix1):
assert fix1 == '21'
assert not fix3_instantiated
"""