Revert "[dev-util] Add symbolicate_dump endpoint to dev server"
This reverts commit 71ea2091e8255b6601bd5a92e0dcf3a61b31471e
Change-Id: Id8cc9116733b39fe39a0358d6e9f409a67d5057d
Reviewed-on: https://gerrit.chromium.org/gerrit/21503
Commit-Ready: Scott Zawalski <scottz@chromium.org>
Reviewed-by: Scott Zawalski <scottz@chromium.org>
Tested-by: Scott Zawalski <scottz@chromium.org>
diff --git a/downloader_unittest.py b/downloader_unittest.py
index 51182ac..693689a 100755
--- a/downloader_unittest.py
+++ b/downloader_unittest.py
@@ -12,7 +12,7 @@
import tempfile
import unittest
-import downloadable_artifact
+import artifact_download
import devserver
import devserver_util
import downloader
@@ -56,7 +56,7 @@
artifacts = []
for index in range(5):
- artifact = self.mox.CreateMock(downloadable_artifact.DownloadableArtifact)
+ artifact = self.mox.CreateMock(artifact_download.DownloadableArtifact)
# Make every other artifact synchronous.
if index % 2 == 0:
artifact.Synchronous = lambda: True
@@ -72,7 +72,7 @@
tempfile.mkdtemp(suffix=mox.IgnoreArg()).AndReturn(self._work_dir)
devserver_util.GatherArtifactDownloads(
self._work_dir, self.archive_url_prefix, self.build,
- self._work_dir, self._work_dir).AndReturn(artifacts)
+ self._work_dir).AndReturn(artifacts)
for index, artifact in enumerate(artifacts):
if index % 2 == 0: