You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2013/02/26 16:45:25 UTC

svn commit: r1450232 - /subversion/trunk/subversion/tests/cmdline/svntest/actions.py

Author: stsp
Date: Tue Feb 26 15:45:25 2013
New Revision: 1450232

URL: http://svn.apache.org/r1450232
Log:
* subversion/tests/cmdline/svntest/actions.py
  (run_and_validate_lock): Fix typo in comment.

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

Modified: subversion/trunk/subversion/tests/cmdline/svntest/actions.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/svntest/actions.py?rev=1450232&r1=1450231&r2=1450232&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/svntest/actions.py (original)
+++ subversion/trunk/subversion/tests/cmdline/svntest/actions.py Tue Feb 26 15:45:25 2013
@@ -1785,7 +1785,7 @@ def run_and_validate_lock(path, username
                                               'info','-R',
                                               path)
 
-  ### TODO: Leverage RegexOuput([...], match_all=True) here.
+  ### TODO: Leverage RegexOutput([...], match_all=True) here.
   # prepare the regexs to compare against
   token_re = re.compile(".*?Lock Token: opaquelocktoken:.*?", re.DOTALL)
   author_re = re.compile(".*?Lock Owner: %s\n.*?" % username, re.DOTALL)