Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9401)

Unified Diff: chrome/common/extensions/docs/server2/integration_test.py

Issue 14366003: Devserver: Fix the third_party module imports in integration_test.py. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/docs/server2/integration_test.py
diff --git a/chrome/common/extensions/docs/server2/integration_test.py b/chrome/common/extensions/docs/server2/integration_test.py
index 9a4ec26b31f780dbda2e34d6b2ca75c940b4b423..585f107ea2fcf51acd69e975e291fff2508359e2 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)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698