You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ju...@apache.org on 2010/11/05 12:09:24 UTC

svn commit: r1031514 - /subversion/trunk/subversion/tests/cmdline/svntest/sandbox.py

Author: julianfoad
Date: Fri Nov  5 11:09:24 2010
New Revision: 1031514

URL: http://svn.apache.org/viewvc?rev=1031514&view=rev
Log:
* subversion/tests/cmdline/svntest/sandbox.py
  (simple_rm, simple_mkdir): Remove unused support for a URL target, as that
    would be better in a separate function and gets in the way of
    a future change: to make the target arguments relative to the WC dir.

Modified:
    subversion/trunk/subversion/tests/cmdline/svntest/sandbox.py

Modified: subversion/trunk/subversion/tests/cmdline/svntest/sandbox.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/svntest/sandbox.py?rev=1031514&r1=1031513&r2=1031514&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/svntest/sandbox.py (original)
+++ subversion/trunk/subversion/tests/cmdline/svntest/sandbox.py Fri Nov  5 11:09:24 2010
@@ -195,16 +195,10 @@ class Sandbox:
 
   def simple_rm(self, *targets):
     assert len(targets) > 0
-    if len(targets) == 1 and is_url(targets[0]):
-      assert not self.read_only
-      targets = ('-m', svntests.main.make_log_msg(), targets[0])
     svntest.main.run_svn(False, 'rm', *targets)
 
   def simple_mkdir(self, *targets):
     assert len(targets) > 0
-    if len(targets) == 1 and is_url(targets[0]):
-      assert not self.read_only
-      targets = ('-m', svntests.main.make_log_msg(), targets[0])
     svntest.main.run_svn(False, 'mkdir', *targets)
 
   def simple_add(self, *targets):