git-cl: only set WIP on first upload

It seems like some folks are confused by additional patchsets
after the first putting the change back into WIP mode. This
confusion is honestly understandable. Maybe we try only setting
it on the very first upload, and just controlling the notify
parameter for future patchsets.

Bug: 721836, 737675
Change-Id: If56e5c71e0c6b3b46c2e30ac0b6d80b878218181
Reviewed-on: https://chromium-review.googlesource.com/552779
Reviewed-by: Quinten Yearsley <qyearsley@chromium.org>
Reviewed-by: Dirk Pranke <dpranke@chromium.org>
Reviewed-by: smut <smut@google.com>
Commit-Queue: Aaron Gable <agable@chromium.org>
diff --git a/tests/git_cl_test.py b/tests/git_cl_test.py
index b1c5f7c..65eedb1 100755
--- a/tests/git_cl_test.py
+++ b/tests/git_cl_test.py
@@ -1519,9 +1519,13 @@
       '1hashPerLine\n'),
     ]
 
-    ref_suffix = '%wip'
     if notify:
-      ref_suffix = '%ready'
+      ref_suffix = '%ready,notify=ALL'
+    else:
+      if not issue:
+        ref_suffix = '%wip'
+      else:
+        ref_suffix = '%notify=NONE'
 
     if title:
       ref_suffix += ',m=' + title