You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ph...@apache.org on 2011/02/07 17:48:25 UTC

svn commit: r1068009 - /subversion/trunk/subversion/tests/cmdline/authz_tests.py

Author: philip
Date: Mon Feb  7 16:48:25 2011
New Revision: 1068009

URL: http://svn.apache.org/viewvc?rev=1068009&view=rev
Log:
Combine two tests now that they both pass.

* subversion/tests/cmdline/authz_tests.py
  (wc_wc_copy): Rename to wc_wc_copy_revert
  (wc_wc_copy_revert): Remove, add final part to new wc_wc_copy_revert.
  (test_list): Remove wc_wc_copy.

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

Modified: subversion/trunk/subversion/tests/cmdline/authz_tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/authz_tests.py?rev=1068009&r1=1068008&r2=1068009&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/authz_tests.py (original)
+++ subversion/trunk/subversion/tests/cmdline/authz_tests.py Mon Feb  7 16:48:25 2011
@@ -1001,8 +1001,8 @@ def multiple_matches(sbox):
                        root_url, root_url + '/second')
 
 @Skip(svntest.main.is_ra_type_file)
-def wc_wc_copy(sbox):
-  "wc-to-wc copy with absent nodes"
+def wc_wc_copy_revert(sbox):
+  "wc-to-wc-copy with absent nodes and then revert"
 
   sbox.build(create_wc = False)
   local_dir = sbox.wc_dir
@@ -1042,12 +1042,6 @@ def wc_wc_copy(sbox):
   svntest.actions.run_and_verify_svn(None, expected_output, [],
                                      'st', '--verbose', sbox.ospath('A2'))
 
-@Skip(svntest.main.is_ra_type_file)
-def wc_wc_copy_revert(sbox):
-  "wc-to-wc-copy with absent nodes and then revert"
-
-  wc_wc_copy(sbox)
-
   svntest.actions.run_and_verify_svn(None, None, [],
                                      'revert', '--recursive', sbox.ospath('A2'))
 
@@ -1112,7 +1106,6 @@ test_list = [ None,
               authz_access_required_at_repo_root,
               authz_access_required_at_repo_root2,
               multiple_matches,
-              wc_wc_copy,
               wc_wc_copy_revert,
               authz_recursive_ls,
              ]