Index: chrome/browser/web_dev_style/resource_checker_test.py |
diff --git a/chrome/browser/web_dev_style/resource_checker_test.py b/chrome/browser/web_dev_style/resource_checker_test.py |
index f6cb0f2fa8b0c04eaf386237c23389999ec08400..64556f9f8b1820a363889172da418afbe46ce868 100755 |
--- a/chrome/browser/web_dev_style/resource_checker_test.py |
+++ b/chrome/browser/web_dev_style/resource_checker_test.py |
@@ -3,6 +3,7 @@ |
# Use of this source code is governed by a BSD-style license that can be |
# found in the LICENSE file. |
+import find_depot_tools |
Dirk Pranke
2015/10/23 22:07:53
this won't actually work, right? build isn't in th
Roland McGrath
2015/10/23 22:55:45
Right. This was a mistake left from a previous (m
|
from os import path as os_path |
import re |
import resource_checker |
@@ -11,9 +12,8 @@ import test_util |
import unittest |
_HERE = os_path.dirname(os_path.abspath(__file__)) |
-sys_path.append(os_path.join(_HERE, '..', '..', '..', 'tools')) |
+sys_path.append(os_path.join(_HERE, '..', '..', '..', 'build')) |
-import find_depot_tools # pylint: disable=W0611 |
from testing_support.super_mox import SuperMoxTestBase |