You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2012/12/29 19:04:32 UTC

svn commit: r1426797 - /subversion/trunk/subversion/tests/cmdline/commit_tests.py

Author: rhuijben
Date: Sat Dec 29 18:04:32 2012
New Revision: 1426797

URL: http://svn.apache.org/viewvc?rev=1426797&view=rev
Log:
Update name of test function to tell what the problem is, instead of what
makes it visible.

* subversion/tests/cmdline/commit_tests.py
  (commit_moved_dir_with_nested_mod_in_subdir): Rename to ...
  (last_changed_of_copied_subdir): ... this to make it more obvious what is
    tested and why it isn't just fixed.
  (test_list): Update reference.

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

Modified: subversion/trunk/subversion/tests/cmdline/commit_tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/commit_tests.py?rev=1426797&r1=1426796&r2=1426797&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/commit_tests.py (original)
+++ subversion/trunk/subversion/tests/cmdline/commit_tests.py Sat Dec 29 18:04:32 2012
@@ -2921,8 +2921,8 @@ def commit_danglers(sbox):
 # dir/subdir should bump LastChangedRev of subdir in originating WC
 @XFail()
 @Issue(4203)
-def commit_moved_dir_with_nested_mod_in_subdir(sbox):
-  "commit of moved dir with nested mod in subdir"
+def last_changed_of_copied_subdir(sbox):
+  "last changed of copied subdir"
 
   sbox.build()
   wc_dir = sbox.wc_dir
@@ -3013,7 +3013,7 @@ test_list = [ None,
               commit_incomplete,
               commit_add_subadd,
               commit_danglers,
-              commit_moved_dir_with_nested_mod_in_subdir,
+              last_changed_of_copied_subdir,
              ]
 
 if __name__ == '__main__':