summaryrefslogtreecommitdiff
path: root/passlib/tests/test_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'passlib/tests/test_utils.py')
-rw-r--r--passlib/tests/test_utils.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/passlib/tests/test_utils.py b/passlib/tests/test_utils.py
index b49d48c..d6a4555 100644
--- a/passlib/tests/test_utils.py
+++ b/passlib/tests/test_utils.py
@@ -34,7 +34,7 @@ class MiscTest(TestCase):
self.assertTrue('irange' in dir(compat))
def test_classproperty(self):
- from passlib.utils import classproperty
+ from passlib.utils.decor import classproperty
class test(object):
xvar = 1
@@ -47,7 +47,7 @@ class MiscTest(TestCase):
self.assertIs(prop.im_func, prop.__func__)
def test_deprecated_function(self):
- from passlib.utils import deprecated_function
+ from passlib.utils.decor import deprecated_function
# NOTE: not comprehensive, just tests the basic behavior
@deprecated_function(deprecated="1.6", removed="1.8")
@@ -65,7 +65,7 @@ class MiscTest(TestCase):
self.assertEqual(test_func(1,2), (1,2))
def test_memoized_property(self):
- from passlib.utils import memoized_property
+ from passlib.utils.decor import memoized_property
class dummy(object):
counter = 0