git cl: Fix incorrect notify parameter when setting TBR.
Follow up on https://chromium-review.googlesource.com/c/527325/
R=agable@chromium.org,rmistry@chromium.org
Bug: chromium:729967
Bug: skia:6744
Change-Id: I7443298797a7c95c8ca01624e3cbf08c95e04855
Reviewed-on: https://chromium-review.googlesource.com/529246
Reviewed-by: Ravi Mistry <rmistry@chromium.org>
Commit-Queue: Andrii Shyshkalov <tandrii@chromium.org>
diff --git a/tests/git_cl_test.py b/tests/git_cl_test.py
index afb4dcd..b7b4804 100755
--- a/tests/git_cl_test.py
+++ b/tests/git_cl_test.py
@@ -1581,7 +1581,8 @@
if tbr:
calls += [
(('SetReview', 'chromium-review.googlesource.com',
- 123456 if squash else None, {'Code-Review': 1}, notify), ''),
+ 123456 if squash else None, {'Code-Review': 1},
+ 'ALL' if notify else 'NONE'), ''),
]
calls += cls._git_post_upload_calls()
return calls