# HG changeset patch # User Martin von Zweigbergk # Date 1511981912 28800 # Node ID 4c04fd032af683e56c54ec98d869d12b162790e0 # Parent 273907306a39e9e54db53730f42eda8dbdab76ea tests: fix regex in test-subrepo-git.t to match entire string Due to a bug in the test runner (fixed by the next commit), the regex used for matching lines like " foobar | 2 +-" stoppped at the "|" and the test passed even though the rest of the line did not match. The test seems to have been supposed to match "|" and "+" literally on those lines, so this changes the regex to escape those characters. It also changes a "\s*" to "\s+" since I think we'll always include a space after the "|" in the diffstat output. Differential Revision: https://phab.mercurial-scm.org/D1545 diff -r 273907306a39 -r 4c04fd032af6 tests/test-subrepo-git.t --- a/tests/test-subrepo-git.t Wed Nov 29 17:06:45 2017 -0500 +++ b/tests/test-subrepo-git.t Wed Nov 29 10:58:32 2017 -0800 @@ -847,8 +847,8 @@ the output contains a regex, because git 1.7.10 and 1.7.11 change the amount of whitespace $ hg diff --subrepos --stat - \s*barfoo |\s*1 + (re) - \s*foobar |\s*2 +- (re) + \s*barfoo \|\s+1 \+ (re) + \s*foobar \|\s+2 \+- (re) 2 files changed, 2 insertions\(\+\), 1 deletions?\(-\) (re) adding an include should ignore the other elements