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 2016/10/25 14:22:05 UTC

svn commit: r1766539 - /subversion/trunk/subversion/tests/cmdline/depth_tests.py

Author: rhuijben
Date: Tue Oct 25 14:22:05 2016
New Revision: 1766539

URL: http://svn.apache.org/viewvc?rev=1766539&view=rev
Log:
* subversion/tests/cmdline/depth_tests.py
  (fold_tree_with_deleted_moved_items): Replace two tabs with equivalent
     spaces.
  (test_list): Replace tab with spaces and re-indent the closing ']' to
     the same level as used in other test files.

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

Modified: subversion/trunk/subversion/tests/cmdline/depth_tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/depth_tests.py?rev=1766539&r1=1766538&r2=1766539&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/depth_tests.py (original)
+++ subversion/trunk/subversion/tests/cmdline/depth_tests.py Tue Oct 25 14:22:05 2016
@@ -2933,12 +2933,12 @@ def fold_tree_with_deleted_moved_items(s
     'A/B/lambda'     : Item(status='D ', wc_rev=1),
     'A/C'            : Item(status='D ', wc_rev=1, moved_to='A/C_moved'),
     'A/C_moved'      : Item(status='A ', wc_rev='-', copied='+',
-	                        moved_from='A/C'),
+                            moved_from='A/C'),
     'A/D'            : Item(status='  ', wc_rev=1),
     'A/D/G'          : Item(status='  ', wc_rev=1),
     'A/D/G/pi'       : Item(status='D ', wc_rev=1, moved_to='A/D/G/pi_moved'),
     'A/D/G/pi_moved' : Item(status='A ', wc_rev='-', copied='+',
-	                        moved_from='A/D/G/pi'),
+                            moved_from='A/D/G/pi'),
     })
   expected_disk = svntest.wc.State('', {
     'iota'           : Item(contents="This is the file 'iota'.\n"),
@@ -3008,8 +3008,8 @@ test_list = [ None,
               revert_depth_files,
               spurious_nodes_row,
               commit_excluded,
-			  fold_tree_with_deleted_moved_items,
-              ]
+              fold_tree_with_deleted_moved_items,
+             ]
 
 if __name__ == "__main__":
   svntest.main.run_tests(test_list)