diff options
author | kalman@chromium.org <kalman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-18 21:37:57 +0000 |
---|---|---|
committer | kalman@chromium.org <kalman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-18 21:37:57 +0000 |
commit | 2d76291e75078ffe7d92fd9818d8c3073cf04c95 (patch) | |
tree | c0caa04a2e97fcb8c97f56715d8ee9a94e04f1c2 /chrome/common/extensions/docs/server2/integration_test.py | |
parent | 1c11cbc44eefc28ebdb15c86d8f67cd04f704a9f (diff) | |
download | chromium_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-x | chrome/common/extensions/docs/server2/integration_test.py | 10 |
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) |