tests: no-newline generator should also replace \r

This commit is contained in:
Marcin Kuzminski 2017-07-17 23:21:01 +02:00
parent 678a930750
commit f81ec24cc9

View file

@ -258,6 +258,7 @@ def no_newline_id_generator(test_name):
org_name = test_name
test_name = test_name\
.replace('\n', '_N') \
.replace('\r', '_N') \
.replace('\t', '_T') \
.replace(' ', '_S')