Fix `disable_test_id_escaping_and_forfeit_all_rights_to_community_support` option when using a list of test IDs
This commit is contained in:
parent
6663cb054c
commit
a304dbb519
1
AUTHORS
1
AUTHORS
|
@ -9,6 +9,7 @@ Abhijeet Kasurde
|
|||
Adam Johnson
|
||||
Adam Uhlir
|
||||
Ahn Ki-Wook
|
||||
Akiomi Kamakura
|
||||
Alan Velasco
|
||||
Alexander Johnson
|
||||
Alexei Kozlenok
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Fix issue with ``disable_test_id_escaping_and_forfeit_all_rights_to_community_support`` option doesn't work when using a list of test IDs in parametrized tests.
|
|
@ -1217,7 +1217,7 @@ def _idvalset(idx, parameterset, argnames, idfn, ids, item, config):
|
|||
]
|
||||
return "-".join(this_id)
|
||||
else:
|
||||
return ascii_escaped(ids[idx])
|
||||
return _ascii_escaped_by_config(ids[idx], config)
|
||||
|
||||
|
||||
def idmaker(argnames, parametersets, idfn=None, ids=None, config=None, item=None):
|
||||
|
|
Loading…
Reference in New Issue