Fix test_idval_hypothesis

This commit is contained in:
Bruno Oliveira 2018-09-04 18:49:20 -03:00
parent 4592def14d
commit adc9ed85bc
1 changed files with 1 additions and 1 deletions

View File

@ -217,7 +217,7 @@ class TestMetafunc(object):
def test_idval_hypothesis(self, value):
from _pytest.python import _idval
escaped = _idval(value, "a", 6, None, item=None)
escaped = _idval(value, "a", 6, None, item=None, config=None)
assert isinstance(escaped, str)
if PY3:
escaped.encode("ascii")