summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/test/testing.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2010-02-23 21:38:39 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2010-02-23 21:38:39 +0000
commit189414fe2999d281ad8b45b89f97a3c56fc5e84b (patch)
tree39feda2e81d8d40a493b0842927949cac91b8866 /lib/sqlalchemy/test/testing.py
parent0f4770775fd91f43a7243965eb15b090d4c34a88 (diff)
downloadsqlalchemy-189414fe2999d281ad8b45b89f97a3c56fc5e84b.tar.gz
add some py3k caveats
Diffstat (limited to 'lib/sqlalchemy/test/testing.py')
-rw-r--r--lib/sqlalchemy/test/testing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/test/testing.py b/lib/sqlalchemy/test/testing.py
index 31a271a03..771b8c90f 100644
--- a/lib/sqlalchemy/test/testing.py
+++ b/lib/sqlalchemy/test/testing.py
@@ -33,7 +33,7 @@ db = None
# more sugar, installed by __init__
requires = None
-def fails_if(callable_):
+def fails_if(callable_, reason=None):
"""Mark a test as expected to fail if callable_ returns True.
If the callable returns false, the test is run and reported as normal.