| Index: third_party/recipe_engine/unittests/field_composer_test.py
|
| diff --git a/scripts/slave/unittests/field_composer_test.py b/third_party/recipe_engine/unittests/field_composer_test.py
|
| similarity index 94%
|
| rename from scripts/slave/unittests/field_composer_test.py
|
| rename to third_party/recipe_engine/unittests/field_composer_test.py
|
| index 07f9a87436cd1a6e980671fecb79a4d387e18631..6ae5408788cbbf1d04ed5bcb6a45045e07b34041 100755
|
| --- a/scripts/slave/unittests/field_composer_test.py
|
| +++ b/third_party/recipe_engine/unittests/field_composer_test.py
|
| @@ -5,12 +5,14 @@
|
|
|
| import os
|
| import shutil
|
| +import sys
|
| import tempfile
|
| import unittest
|
|
|
| -import test_env # pylint: disable=W0403,W0611
|
| -import sys
|
| -from slave import field_composer
|
| +sys.path.append(os.path.dirname(os.path.dirname(os.path.dirname(
|
| + os.path.abspath(__file__)))))
|
| +
|
| +from recipe_engine import field_composer
|
|
|
|
|
| # Functors are compared by reference.
|
|
|