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) |