Print CQ dry run messages/warnings consistently across commands.

For a bit of context, see the TODO in the code --
I think that the original intent of that TODO was that we to make
the way that CQ dry runs are triggered consistent, and also make
the behavior of dry runs consistent across different commands.

Change-Id: I80dfc31ade302a6af7fa84011e2871d416ea9c96
Reviewed-on: https://chromium-review.googlesource.com/518930
Commit-Queue: Quinten Yearsley <qyearsley@chromium.org>
Reviewed-by: Andrii Shyshkalov <tandrii@chromium.org>
diff --git a/tests/git_cl_test.py b/tests/git_cl_test.py
index 570c3ab..dedc69a 100755
--- a/tests/git_cl_test.py
+++ b/tests/git_cl_test.py
@@ -2671,7 +2671,7 @@
     self.assertEqual(0, git_cl.main(['try']))
     self.assertEqual(
         out.getvalue(),
-        'scheduled CQ Dry Run on https://codereview.chromium.org/123\n')
+        'Scheduling CQ dry run on: https://codereview.chromium.org/123\n')
 
   def test_git_cl_try_default_cq_dry_run_gerrit(self):
     self.mock(git_cl.Changelist, 'GetChange',
@@ -2723,7 +2723,7 @@
     self.assertEqual(0, git_cl.main(['try']))
     self.assertEqual(
         out.getvalue(),
-        'scheduled CQ Dry Run on '
+        'Scheduling CQ dry run on: '
         'https://chromium-review.googlesource.com/123456\n')
 
   def test_git_cl_try_buildbucket_with_properties_rietveld(self):