From 2b0407eaf6c60e38d115a024efbd463554870f3f Mon Sep 17 00:00:00 2001 From: Uwe Kamper Date: Sun, 27 Oct 2013 21:14:30 +0100 Subject: [PATCH] changed testcases to use the functions from password_encryption module --- account/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/account/tests.py b/account/tests.py index 03a89f4..078a96a 100644 --- a/account/tests.py +++ b/account/tests.py @@ -6,9 +6,9 @@ Replace this with more appropriate tests for your application. """ from django.test import TestCase -from account.views import encrypt_ldap_password, decrypt_ldap_password +from password_encryption import encrypt_ldap_password, decrypt_ldap_password -class CbmiTest(TestCase): +class PasswordEncryptionTest(TestCase): """ Test for the cbmi apps. """