| Index: tests/git_cl_test.py
|
| diff --git a/tests/git_cl_test.py b/tests/git_cl_test.py
|
| index 8b46eba0a52717412185ac32cb28929bbd9eb89a..3dc1b45dee4e0118ef7a6a3f29ffec735b064452 100755
|
| --- a/tests/git_cl_test.py
|
| +++ b/tests/git_cl_test.py
|
| @@ -201,12 +201,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...'
|
|
|