From e9c506e7c1dc79d5b94e196bfa0a172fdc60009b Mon Sep 17 00:00:00 2001 From: Eli Collins Date: Mon, 30 Jan 2017 18:41:48 -0500 Subject: passlib.tests: fix imports that got dropped during a patch --- passlib/tests/test_handlers_cisco.py | 4 ++-- tox.ini | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/passlib/tests/test_handlers_cisco.py b/passlib/tests/test_handlers_cisco.py index b19bacf..ea6594b 100644 --- a/passlib/tests/test_handlers_cisco.py +++ b/passlib/tests/test_handlers_cisco.py @@ -10,9 +10,9 @@ import logging log = logging.getLogger(__name__) # site # pkg -from passlib import hash +from passlib import hash, exc from passlib.utils.compat import u -from .utils import UserHandlerMixin, HandlerCase +from .utils import UserHandlerMixin, HandlerCase, repeat_string from .test_handlers import UPASS_TABLE # module __all__ = [ diff --git a/tox.ini b/tox.ini index d3c1b03..aaef4aa 100644 --- a/tox.ini +++ b/tox.ini @@ -197,6 +197,7 @@ deps = basepython = python2.7 deps = nose + rednose nosegae unittest2 changedir = {envdir}/lib/python2.7/site-packages -- cgit v1.2.1