You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by gs...@apache.org on 2010/04/19 22:08:45 UTC

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

Author: gstein
Date: Mon Apr 19 20:08:45 2010
New Revision: 935723

URL: http://svn.apache.org/viewvc?rev=935723&view=rev
Log:
* subversion/tests/cmdline/svntest/sandbox.py:
  (Sandbox.simple_add): adds cannot use URLs, so remove the copy/paste bug
    that looks for URLs and inserts a log message.

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=935723&r1=935722&r2=935723&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/svntest/sandbox.py (original)
+++ subversion/trunk/subversion/tests/cmdline/svntest/sandbox.py Mon Apr 19 20:08:45 2010
@@ -176,9 +176,6 @@ class Sandbox:
 
   def simple_add(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, 'add', *targets)
 
   def simple_revert(self, *targets):