##// END OF EJS Templates
tests: don't match blank output lines as regexes in unified tests...
Brodie Rao -
r12373:58885f00 default
parent child Browse files
Show More
@@ -530,7 +530,7 b' def tsttest(test, options):'
530 530
531 531 if el == l: # perfect match (fast)
532 532 postout.append(" " + l)
533 elif el and rematch(el, l): # fallback regex match
533 elif el and el[2:] and rematch(el, l): # fallback regex match
534 534 postout.append(" " + el)
535 535 else: # mismatch - let diff deal with it
536 536 postout.append(" " + l)
General Comments 0
You need to be logged in to leave comments. Login now