Index: subversion/tests/clients/cmdline/copy_tests.py
===================================================================
--- subversion/tests/clients/cmdline/copy_tests.py	(revision 16087)
+++ subversion/tests/clients/cmdline/copy_tests.py	(working copy)
@@ -1630,7 +1630,7 @@
 
   # The copy shouldn't fail
   pi_path = os.path.join(wc_dir, 'A', 'D', 'G', 'pi')
-  svntest.actions.run_and_verify_svn("", None, None,
+  svntest.actions.run_and_verify_svn("", None, [],
                                      'cp', pi_path, rho_path)
 
   # Now commit
@@ -1660,9 +1660,9 @@
   # Set props on file which is copy-source later on
   pi_path = os.path.join(wc_dir, 'A', 'D', 'G', 'pi')
   rho_path = os.path.join(wc_dir, 'A', 'D', 'G', 'rho')
-  svntest.actions.run_and_verify_svn("", None, None,
+  svntest.actions.run_and_verify_svn("", None, [],
                                      'ps', 'phony-prop', '*', pi_path)
-  svntest.actions.run_and_verify_svn("", None, None,
+  svntest.actions.run_and_verify_svn("", None, [],
                                      'ps', 'svn:eol-style', 'LF', rho_path)
 
   # Verify props having been set
@@ -1692,7 +1692,7 @@
                                         wc_dir)
 
   # Bring wc into sync
-  svntest.actions.run_and_verify_svn("",None,None, 'up', wc_dir)
+  svntest.actions.run_and_verify_svn("", None, [], 'up', wc_dir)
 
   # File scheduled for deletion
   svntest.actions.run_and_verify_svn(None, None, [], 'rm', rho_path)
@@ -1703,7 +1703,7 @@
   svntest.actions.run_and_verify_status(wc_dir, expected_status)
 
   # The copy shouldn't fail
-  svntest.actions.run_and_verify_svn("", None, None,
+  svntest.actions.run_and_verify_svn("", None, [],
                                      'cp', pi_path, rho_path)
 
   # Verify both content and props have been copied
@@ -1747,7 +1747,7 @@
 
   # The copy shouldn't fail
   pi_url = svntest.main.current_repo_url + "/A/D/G/pi"
-  svntest.actions.run_and_verify_svn("", None, None,
+  svntest.actions.run_and_verify_svn("", None, [],
                                      'cp', pi_url, rho_path)
 
   # Now commit
Index: subversion/tests/clients/cmdline/revert_tests.py
===================================================================
--- subversion/tests/clients/cmdline/revert_tests.py	(revision 16087)
+++ subversion/tests/clients/cmdline/revert_tests.py	(working copy)
@@ -193,9 +193,9 @@
   # Set props on file which is copy-source later on
   pi_path = os.path.join(wc_dir, 'A', 'D', 'G', 'pi')
   rho_path = os.path.join(wc_dir, 'A', 'D', 'G', 'rho')
-  svntest.actions.run_and_verify_svn("", None, None,
+  svntest.actions.run_and_verify_svn("", None, [],
                                      'ps', 'phony-prop', '*', pi_path)
-  svntest.actions.run_and_verify_svn("", None, None,
+  svntest.actions.run_and_verify_svn("", None, [],
                                      'ps', 'svn:eol-style', 'LF', rho_path)
 
   # Verify props having been set
@@ -225,7 +225,7 @@
                                         wc_dir)
 
   # Bring wc into sync
-  svntest.actions.run_and_verify_svn("",None,None, 'up', wc_dir)
+  svntest.actions.run_and_verify_svn("", None, [], 'up', wc_dir)
 
   # File scheduled for deletion
   svntest.actions.run_and_verify_svn(None, None, [], 'rm', rho_path)
@@ -236,7 +236,7 @@
   svntest.actions.run_and_verify_status(wc_dir, expected_status)
 
   # The copy shouldn't fail
-  svntest.actions.run_and_verify_svn("", None, None,
+  svntest.actions.run_and_verify_svn("", None, [],
                                      'cp', pi_path, rho_path)
 
   # Verify both content and props have been copied
@@ -256,7 +256,7 @@
   expected_output = svntest.wc.State(wc_dir, {
     'A/D/G/rho': Item(verb='Replacing'),
     })
-  svntest.actions.run_and_verify_svn("", None, None,
+  svntest.actions.run_and_verify_svn("", None, [],
                                      'revert', '-R', wc_dir)
 
   # Check disk status
@@ -284,7 +284,7 @@
 
   # File scheduled for deletion
   rho_path = os.path.join(wc_dir, 'A', 'D', 'G', 'rho')
-  svntest.actions.run_and_verify_svn(None, [], [], 'rm', rho_path)
+  svntest.actions.run_and_verify_svn(None, None, [], 'rm', rho_path)
 
   expected_status = svntest.actions.get_virginal_state(wc_dir, 1)
   expected_status.tweak('A/D/G/rho', status='D ')
@@ -308,7 +308,7 @@
   fp.close()
 
   # Add the new file
-  svntest.actions.run_and_verify_svn(None, [], [], 'add', rho_path)
+  svntest.actions.run_and_verify_svn(None, None, [], 'add', rho_path)
 
   # Commit revsion 3
   expected_status.add({
@@ -354,7 +354,7 @@
   # Now revert
   svntest.actions.run_and_verify_svn(None,
                                      None,
-                                     None, 'revert', rho_path)
+                                     [], 'revert', rho_path)
 
   # test that rho really was reverted
   expected_status.tweak('A/D/G/rho', copied=None, status='  ', wc_rev=3)
