You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ph...@apache.org on 2010/03/26 11:33:26 UTC

svn commit: r927760 - /subversion/trunk/subversion/tests/libsvn_client/client-test.c

Author: philip
Date: Fri Mar 26 10:33:26 2010
New Revision: 927760

URL: http://svn.apache.org/viewvc?rev=927760&view=rev
Log:
* subversion/tests/libsvn_client/client-test.c
  (test_patch): Don't fail when removing test directories from previous
   runs.

Modified:
    subversion/trunk/subversion/tests/libsvn_client/client-test.c

Modified: subversion/trunk/subversion/tests/libsvn_client/client-test.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/libsvn_client/client-test.c?rev=927760&r1=927759&r2=927760&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/libsvn_client/client-test.c (original)
+++ subversion/trunk/subversion/tests/libsvn_client/client-test.c Fri Mar 26 10:33:26 2010
@@ -317,7 +317,7 @@ test_patch(const svn_test_opts_t *opts,
   repos_url = svn_uri_canonicalize(repos_url, pool);
   wc_path = svn_dirent_join(cwd_utf8->data, "test-patch-wc", pool);
   wc_path = svn_dirent_canonicalize(wc_path, pool);
-  SVN_ERR(svn_io_remove_dir2(wc_path, FALSE, NULL, NULL, pool));
+  SVN_ERR(svn_io_remove_dir2(wc_path, TRUE, NULL, NULL, pool));
   rev.kind = svn_opt_revision_head;
   peg_rev.kind = svn_opt_revision_unspecified;
   SVN_ERR(svn_client_create_context(&ctx, pool));