summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-08-28 17:50:12 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2012-08-28 17:50:12 -0400
commitd1c2b7aff8470f5566c61de7dc2f69bca969dac5 (patch)
treeaab905f62bde2f7b263fb0f0b83eeef3b6b77748
parent7d6c1c4a95596d5d83d9187d823f88fdc46f35b6 (diff)
downloadsqlalchemy-d1c2b7aff8470f5566c61de7dc2f69bca969dac5.tar.gz
adjust this test which passes on some psycopg2s, fails on others, and we dont have a good
testing decorator to check this
-rw-r--r--test/engine/test_execute.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/engine/test_execute.py b/test/engine/test_execute.py
index 900a3c8ee..43c476915 100644
--- a/test/engine/test_execute.py
+++ b/test/engine/test_execute.py
@@ -241,8 +241,8 @@ class ExecuteTest(fixtures.TestBase):
def test_stmt_exception_pickleable_no_dbapi(self):
self._test_stmt_exception_pickleable(Exception("hello world"))
- @testing.fails_on("postgresql+psycopg2",
- "Packages the cursor in the exception")
+ @testing.crashes("postgresql+psycopg2",
+ "Older versions dont support cursor pickling, newer ones do")
@testing.fails_on("mysql+oursql",
"Exception doesn't come back exactly the same from pickle")
@testing.fails_on("oracle+cx_oracle",