Index: recipe_modules/properties/example.py |
diff --git a/recipe_modules/properties/example.py b/recipe_modules/properties/example.py |
index b2e81c9ab043647356624145361dbd3a01fe29bb..45ab5ebf368793a7c0212bc60776949563fca0b6 100644 |
--- a/recipe_modules/properties/example.py |
+++ b/recipe_modules/properties/example.py |
@@ -2,10 +2,12 @@ |
# Use of this source code is governed by a BSD-style license that can be |
# found in the LICENSE file. |
-from infra.libs.infra_types import thaw |
from recipe_engine.recipe_api import Property |
-DEPS = ['properties', 'step'] |
+DEPS = [ |
+ 'recipe_engine/properties', |
+ 'recipe_engine/step', |
+] |
PROPERTIES = { |
'test_prop': Property(), |
@@ -27,4 +29,3 @@ def GenTests(api): |
api.test('exception') + |
api.expect_exception('ValueError') |
) |
- |