Index: recipe_modules/bot_update/example.py |
diff --git a/recipe_modules/bot_update/example.py b/recipe_modules/bot_update/example.py |
index 79787f3580a1c9d79ab9430e36d66091a914491d..a369997c7bc4d7af26df13cebaa90da8aec2ff43 100644 |
--- a/recipe_modules/bot_update/example.py |
+++ b/recipe_modules/bot_update/example.py |
@@ -84,7 +84,7 @@ def GenTests(api): |
slavename='totallyaslave-c4', |
issue=12345, |
patchset=654321, |
- patch_url='http://src.chromium.org/foo/bar' |
+ rietveld='https://rietveld.example.com/', |
) |
yield api.test('trychange') + api.properties( |
mastername='tryserver.chromium.linux', |
@@ -104,7 +104,7 @@ def GenTests(api): |
slavename='totallyaslave-c4', |
issue=12345, |
patchset=654321, |
- patch_url='http://src.chromium.org/foo/bar', |
+ rietveld='https://rietveld.example.com/', |
) + api.step_data('bot_update', retcode=1) |
yield api.test('tryjob_fail_patch') + api.properties( |
mastername='tryserver.chromium.linux', |
@@ -112,7 +112,7 @@ def GenTests(api): |
slavename='totallyaslave-c4', |
issue=12345, |
patchset=654321, |
- patch_url='http://src.chromium.org/foo/bar', |
+ rietveld='https://rietveld.example.com/', |
fail_patch='apply', |
) + api.step_data('bot_update', retcode=88) |
yield api.test('tryjob_fail_patch_download') + api.properties( |
@@ -121,7 +121,7 @@ def GenTests(api): |
slavename='totallyaslave-c4', |
issue=12345, |
patchset=654321, |
- patch_url='http://src.chromium.org/foo/bar', |
+ rietveld='https://rietveld.example.com/', |
fail_patch='download' |
) + api.step_data('bot_update', retcode=87) |
yield api.test('forced') + api.properties( |
@@ -172,7 +172,7 @@ def GenTests(api): |
slavename='totallyaslave-c4', |
issue=12345, |
patchset=654321, |
- patch_url='http://src.chromium.org/foo/bar', |
+ rietveld='https://rietveld.example.com/', |
patch_project='v8', |
revisions={'src/v8': 'abc'} |
) |