| Index: tests/git_cl_test.py
|
| diff --git a/tests/git_cl_test.py b/tests/git_cl_test.py
|
| index 2e50be27145db72f9636e425589e5136f6320acf..32a1aba762a24370e0c69b66ef5b4e1f23dd870f 100755
|
| --- a/tests/git_cl_test.py
|
| +++ b/tests/git_cl_test.py
|
| @@ -199,12 +199,10 @@ class TestGitCl(TestCase):
|
| @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...'
|
|
|