Update upload.py @827fa087f74d, which includes support for svn 1.7

It also removes the need of manually creating a subject argument.

Other related changes in this CL:
- Reenable the prompt for patchset title in gcl. I'm not sure why it was disabled.
- Remove git cl upload --desc_from_logs flag. --force is already meaningful.

R=cmp@chromium.org
BUG=
TEST=

Review URL: http://codereview.chromium.org/9193023

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@119066 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/tests/git_cl_test.py b/tests/git_cl_test.py
index 8b46eba..3dc1b45 100755
--- a/tests/git_cl_test.py
+++ b/tests/git_cl_test.py
@@ -201,12 +201,10 @@
   @staticmethod
   def _cmd_line(description, args):
     """Returns the upload command line passed to upload.RealMain()."""
-    msg = description.split('\n', 1)[0]
     return [
         'upload', '--assume_yes', '--server',
         'https://codereview.example.com',
-        '--message', msg,
-        '--description', description
+        '--message', description
     ] + args + [
         '--cc', 'joe@example.com',
         'master...'