##// END OF EJS Templates
Fix bug with SVG checking
Julia Evans -
Show More
@@ -31,6 +31,8 b' class TestExecute(PreprocessorTestsBase):'
31 del cell['metadata']
31 del cell['metadata']
32 if 'text' in cell:
32 if 'text' in cell:
33 cell['text'] = re.sub('0x[0-9a-f]{7,9}', '<HEXADDR>', cell['text'])
33 cell['text'] = re.sub('0x[0-9a-f]{7,9}', '<HEXADDR>', cell['text'])
34 if 'svg' in cell:
35 del cell['text']
34 return cell
36 return cell
35
37
36
38
General Comments 0
You need to be logged in to leave comments. Login now