summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions/docs/server2/integration_test.py
diff options
context:
space:
mode:
authorkalman@chromium.org <kalman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-18 21:37:57 +0000
committerkalman@chromium.org <kalman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-18 21:37:57 +0000
commit2d76291e75078ffe7d92fd9818d8c3073cf04c95 (patch)
treec0caa04a2e97fcb8c97f56715d8ee9a94e04f1c2 /chrome/common/extensions/docs/server2/integration_test.py
parent1c11cbc44eefc28ebdb15c86d8f67cd04f704a9f (diff)
downloadchromium_src-2d76291e75078ffe7d92fd9818d8c3073cf04c95.zip
chromium_src-2d76291e75078ffe7d92fd9818d8c3073cf04c95.tar.gz
chromium_src-2d76291e75078ffe7d92fd9818d8c3073cf04c95.tar.bz2
Devserver: Fix the third_party module imports in integration_test.py.
TBR=cduvall@chromium.org Review URL: https://codereview.chromium.org/14366003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@195008 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions/docs/server2/integration_test.py')
-rwxr-xr-xchrome/common/extensions/docs/server2/integration_test.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/chrome/common/extensions/docs/server2/integration_test.py b/chrome/common/extensions/docs/server2/integration_test.py
index 9a4ec26..585f107 100755
--- a/chrome/common/extensions/docs/server2/integration_test.py
+++ b/chrome/common/extensions/docs/server2/integration_test.py
@@ -3,6 +3,11 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+# Run build_server so that files needed by tests are copied to the local
+# third_party directory.
+import build_server
+build_server.main()
+
from handler import Handler
from local_renderer import LocalRenderer
import optparse
@@ -11,11 +16,6 @@ import sys
import time
import unittest
-# Run build_server so that files needed by tests are copied to the local
-# third_party directory.
-import build_server
-build_server.main()
-
# Arguments set up if __main__ specifies them.
_BASE_PATH = os.path.join(
os.path.abspath(os.path.dirname(__file__)), os.pardir, os.pardir)