You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ju...@apache.org on 2010/11/05 04:45:52 UTC

svn commit: r1031419 - /subversion/trunk/subversion/tests/cmdline/copy_tests.py

Author: julianfoad
Date: Fri Nov  5 03:45:52 2010
New Revision: 1031419

URL: http://svn.apache.org/viewvc?rev=1031419&view=rev
Log:
* subversion/tests/cmdline/copy_tests.py
  (A_B_children, A_D_children): Use a tuple rather than a list, to
  suit older versions of Python. Should fix build-bot failure.

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

Modified: subversion/trunk/subversion/tests/cmdline/copy_tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/copy_tests.py?rev=1031419&r1=1031418&r2=1031419&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/copy_tests.py (original)
+++ subversion/trunk/subversion/tests/cmdline/copy_tests.py Fri Nov  5 03:45:52 2010
@@ -4835,9 +4835,9 @@ def delete_replace_delete(sbox):
   # Currently fails because pi, rho, tau get left behind
   svntest.actions.run_and_verify_status(wc_dir, expected_status)
 
-A_B_children = ['A/B/lambda', 'A/B/F', 'A/B/E/alpha', 'A/B/E/beta', 'A/B/E']
-A_D_children = ['A/D/gamma', 'A/D/G', 'A/D/G/pi', 'A/D/G/rho', 'A/D/G/tau',
-                'A/D/H', 'A/D/H/chi', 'A/D/H/psi', 'A/D/H/omega']
+A_B_children = ('A/B/lambda', 'A/B/F', 'A/B/E/alpha', 'A/B/E/beta', 'A/B/E')
+A_D_children = ('A/D/gamma', 'A/D/G', 'A/D/G/pi', 'A/D/G/rho', 'A/D/G/tau',
+                'A/D/H', 'A/D/H/chi', 'A/D/H/psi', 'A/D/H/omega')
 
 def copy_repos_over_deleted_same_kind(sbox):
   "copy repos node over deleted node, same kind"