Revert "Re-land "[dev-util] Add symbolicate_dump endpoint to dev server""

This reverts commit 66e91c132f9651905a567978a97d192d485e03c4


Apparently, this causes the wait_for_status endpoint to return incorrectly.

Change-Id: Id06f5b2ae2bb6a0e005318ed7ea0661ec3ebd1ed
Reviewed-on: https://gerrit.chromium.org/gerrit/21642
Reviewed-by: Scott Zawalski <scottz@chromium.org>
Tested-by: Chris Masone <cmasone@chromium.org>
Commit-Ready: Chris Masone <cmasone@chromium.org>
Reviewed-by: Chris Masone <cmasone@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: