You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Karl Fogel <kf...@newton.ch.collab.net> on 2002/05/29 04:34:09 UTC

Re: svn commit: rev 2027 - trunk/subversion/libsvn_wc trunk/subversion/tests/clients/cmdline

philip@tigris.org writes:
> --- trunk/subversion/tests/clients/cmdline/basic_tests.py	(original)
> +++ trunk/subversion/tests/clients/cmdline/basic_tests.py	Tue May 28 22:49:16 2002
> @@ -96,11 +96,12 @@
>    url = svntest.main.current_repo_url
>    stdout_lines, stderr_lines = svntest.main.run_svn (1, 'checkout', url,
>                                                       '-d', wc_dir)
> -  if len (stderr_lines) == 0:
> -    print "repeat checkout succeeded when should have failed"
> +  if len (stderr_lines) != 0:
> +    print "repeat checkout failed"
>      return 1
>  
> -  # lambda is restored
> +  # lambda is restored, modifications remain, deletes remain scheduled
> +  # for deletion although files are restored to the filesystem
>    for item in status_list:
>      if item[0] == lambda_path:
>        item[3]['status'] = '_ '

Okay, but if we're going to expect no stderr_lines, then the first
argument to main.run_svn() should be None, not 1...

-K


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org