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/06 22:45:54 UTC

svn commit: r1443231 - /subversion/trunk/subversion/tests/cmdline/update_tests.py

Author: stsp
Date: Wed Feb  6 21:45:54 2013
New Revision: 1443231

URL: http://svn.apache.org/viewvc?rev=1443231&view=rev
Log:
Follow-up to r1443212, fix test fallout.

* subversion/tests/cmdline/update_tests.py
  (break_moved_dir_edited_leaf_del): Don't expect 'svn resolve' to revert
   the delete-half of the move. As of r1443212 it isn't reverted anymore.

Modified:
    subversion/trunk/subversion/tests/cmdline/update_tests.py

Modified: subversion/trunk/subversion/tests/cmdline/update_tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/update_tests.py?rev=1443231&r1=1443230&r2=1443231&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/update_tests.py (original)
+++ subversion/trunk/subversion/tests/cmdline/update_tests.py Wed Feb  6 21:45:54 2013
@@ -6120,14 +6120,11 @@ def break_moved_dir_edited_leaf_del(sbox
 
   # Now resolve the conflict, using --accept=theirs-conflict.
   # This should break the move of A/B/E to A/B/E2, leaving A/B/E2
-  # as a copy. The deletion of A/B/E is reverted (unless it has been
-  # replaced by a new A/B/E, which is a different test case).
-  # XFAIL: Currently the move is still recorded after 'svn resolve'.
+  # as a copy. The deletion of A/B/E is not reverted.
   svntest.actions.run_and_verify_svn("resolve failed", None, [],
                                      'resolve', '--recursive',
                                      '--accept=theirs-conflict', wc_dir)
-  expected_status.tweak('A/B/E', status='  ', treeconflict=None, moved_to=None)
-  expected_status.tweak('A/B/E/beta', status='  ')
+  expected_status.tweak('A/B/E', treeconflict=None, moved_to=None)
   expected_status.tweak('A/B/E2', moved_from=None)
   svntest.actions.run_and_verify_status(wc_dir, expected_status)