New issue 293: When fixture has the same parameter value it crashes for me with 
KeyError
https://bitbucket.org/hpk42/pytest/issue/293/when-fixture-has-the-same-parameter-value

Oleg Pidsadnyi:


KeyError: foo

```
#!python
import pytest


@pytest.fixture(params=['a', 'a'])
def foo(request):
   return request.param


def test_foo(foo):
   pass
```


--

This is an issue notification from bitbucket.org. You are receiving
this either because you are the owner of the issue, or you are
following the issue.
_______________________________________________
pytest-commit mailing list
pytest-commit@python.org
http://mail.python.org/mailman/listinfo/pytest-commit

Reply via email to