Author: pburba Date: Mon Feb 7 22:08:36 2011 New Revision: 1068167 URL: http://svn.apache.org/viewvc?rev=1068167&view=rev Log: * subversion/tests/cmdline/lock_tests.py (unlock_wrong_token): Add decorator for issue #3794.
Modified: subversion/trunk/subversion/tests/cmdline/lock_tests.py Modified: subversion/trunk/subversion/tests/cmdline/lock_tests.py URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/lock_tests.py?rev=1068167&r1=1068166&r2=1068167&view=diff ============================================================================== --- subversion/trunk/subversion/tests/cmdline/lock_tests.py (original) +++ subversion/trunk/subversion/tests/cmdline/lock_tests.py Mon Feb 7 22:08:36 2011 @@ -1317,6 +1317,7 @@ def ls_url_encoded(sbox): #---------------------------------------------------------------------- # Make sure unlocking a path with the wrong lock token fails. @XFail(svntest.main.is_ra_type_dav) +@Issue(3794) def unlock_wrong_token(sbox): "verify unlocking with wrong lock token" @@ -1334,7 +1335,7 @@ def unlock_wrong_token(sbox): # Steal the lock as the same author, but using an URL to keep the old token # in the WC. svntest.actions.run_and_verify_svn(None, ".*locked by user", [], 'lock', - "--force", file_url) + "--force", file_url) # Then, unlocking the WC path should fail. ### The error message returned is actually this, but let's worry about that