On Thu, Feb 17, 2011 at 2:09 PM, Noorul Islam K M <[email protected]> wrote: > > Log > [[[ > > Fix failing expected error regex. > > * subversion/tests/cmdline/blame_tests.py > (blame_non_existent_url_target): Relax regex to allow errors from > http: and svn: protocols. > > Patch by: Noorul Islam K M <noorul{_AT_}collab.net> > ]]] > > > Index: subversion/tests/cmdline/blame_tests.py > =================================================================== > --- subversion/tests/cmdline/blame_tests.py (revision 1071613) > +++ subversion/tests/cmdline/blame_tests.py (working copy) > @@ -759,8 +759,7 @@ > " 2 jrandom New contents for iota\n", > ] > > - expected_err = "svn: warning: W160017: '/non-existent' " + \ > - "is not a file in revision 2\n" + \ > + expected_err = "svn: warning: W160017: .*\n" + \ > ".*\nsvn: E200009: Could not perform blame on all targets " + \ > "because some targets don't exist\n" > expected_err_re = re.compile(expected_err)
You could just use the expected error code, instead of having to update the expected error message depending on the server, and any future changes. -Hyrum

