Index: chrome/test/chromedriver/run_buildbot_steps.py |
diff --git a/chrome/test/chromedriver/run_buildbot_steps.py b/chrome/test/chromedriver/run_buildbot_steps.py |
index e608e534cc3f6d54ebbc84477d0c3cf5ccec4395..c471dbcf28d486ece975dc4750cf9a53b149aadf 100755 |
--- a/chrome/test/chromedriver/run_buildbot_steps.py |
+++ b/chrome/test/chromedriver/run_buildbot_steps.py |
@@ -383,10 +383,7 @@ def _CleanTmpDir(): |
def _WaitForLatestSnapshot(revision): |
util.MarkBuildStepStart('wait_for_snapshot') |
while True: |
- download_site = archive.Site.BLINK_SNAPSHOT |
- if util.IsLinux() and platform.architecture()[0] == '32bit': |
- download_site = archive.Site.CHROMIUM_SNAPSHOT |
- snapshot_revision = archive.GetLatestRevision(download_site) |
+ snapshot_revision = archive.GetLatestSnapshotVersion() |
if int(snapshot_revision) >= int(revision): |
break |
util.PrintAndFlush('Waiting for snapshot >= %s, found %s' % |