diff options
Diffstat (limited to 'contrib/python/pytest/py2/_pytest')
-rw-r--r-- | contrib/python/pytest/py2/_pytest/python.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/python/pytest/py2/_pytest/python.py b/contrib/python/pytest/py2/_pytest/python.py index f7c368b0c4..4ceb01a7e4 100644 --- a/contrib/python/pytest/py2/_pytest/python.py +++ b/contrib/python/pytest/py2/_pytest/python.py @@ -896,7 +896,7 @@ class CallSpec2(object): @property def id(self): - return "-".join(map(safe_str, self._idlist)) + return "-".join(map(safe_str, self._idlist)) def setmulti2(self, valtypes, argnames, valset, id, marks, scopenum, param_index): for arg, val in zip(argnames, valset): |