Index: scripts/slave/unittests/recipe_simulation_test.py |
diff --git a/scripts/slave/unittests/recipe_simulation_test.py b/scripts/slave/unittests/recipe_simulation_test.py |
index abb4bedc7d6155dabb78b9c40e0e7b1f2577e815..b80c67bab15263dad379c2a9f9b38dfa69974e5e 100755 |
--- a/scripts/slave/unittests/recipe_simulation_test.py |
+++ b/scripts/slave/unittests/recipe_simulation_test.py |
@@ -9,7 +9,10 @@ import sys |
import test_env # pylint: disable=W0403,W0611 |
from recipe_engine import simulation_test |
-from slave import recipe_universe |
+ |
+PACKAGE_PYL = os.path.join( |
+ os.path.dirname(os.path.dirname(os.path.abspath(__file__))), |
+ 'recipe_package.pyl') |
if __name__ == '__main__': |
- simulation_test.main(recipe_universe.get_universe()) |
+ simulation_test.main(PACKAGE_PYL) |