| Index: appengine/chromium_cq_status/tests/utils_test.py
|
| diff --git a/appengine/chromium_cq_status/tests/utils_test.py b/appengine/chromium_cq_status/tests/utils_test.py
|
| index fc07d752123812eb57caebdcc07ffdc35d409751..bb33639e8380e37ae05a89863234537b625129de 100644
|
| --- a/appengine/chromium_cq_status/tests/utils_test.py
|
| +++ b/appengine/chromium_cq_status/tests/utils_test.py
|
| @@ -2,14 +2,12 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| -import sys
|
| import os
|
|
|
| -# App Engine source file imports must be relative to their app's root.
|
| -sys.path.append(os.path.dirname(os.path.dirname(__file__)))
|
| -
|
| -from appengine.utils import testing
|
| -from appengine.chromium_cq_status.shared import utils
|
| +from appengine.path_mangler_hack import PathMangler
|
| +with PathMangler(os.path.dirname(os.path.dirname(__file__))):
|
| + from appengine.utils import testing
|
| + from appengine.chromium_cq_status.shared import utils
|
|
|
| class TestUtils(testing.AppengineTestCase):
|
| def test_filter_dict(self):
|
|
|