From 19791546dac940680e1a1cb8cc88b570c6c0e892 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 31 Aug 2015 15:11:57 +0200 Subject: [PATCH] Add docstring. --- testing/python/fixture.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/testing/python/fixture.py b/testing/python/fixture.py index 677e023f7..203176443 100644 --- a/testing/python/fixture.py +++ b/testing/python/fixture.py @@ -1616,6 +1616,10 @@ class TestFixtureMarker: @pytest.mark.parametrize('param_args', ["'fixt, val'", "'fixt,val'", "['fixt', 'val']", "('fixt', 'val')"]) def test_override_parametrized_fixture_issue_979(self, testdir, param_args): + """Make sure a parametrized argument can override a parametrized fixture. + + This was a regression introduced in the fix for #736. + """ testdir.makepyfile(""" import pytest