summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2015-06-13 20:47:18 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2015-06-13 20:47:18 -0400
commit92ac4a9f88a5bfb1f7ea3e34b701e4eff9a65f91 (patch)
treebaf0aaeb205060c3eacf83192c16408a06285d79
parentbcbfcca2360a58ec1b5a9da1b2c45e8781904b82 (diff)
downloadsqlalchemy-92ac4a9f88a5bfb1f7ea3e34b701e4eff9a65f91.tar.gz
- revert this change which was inadvertently included in the
fix for #3451
-rw-r--r--test/aaa_profiling/test_memusage.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/aaa_profiling/test_memusage.py b/test/aaa_profiling/test_memusage.py
index a777a8aa1..63883daac 100644
--- a/test/aaa_profiling/test_memusage.py
+++ b/test/aaa_profiling/test_memusage.py
@@ -45,8 +45,7 @@ def profile_memory(maxtimes=50):
# tests under 50 iterations and ideally about ten, so
# just filter them out so that we get a "flatline" more quickly.
- if testing.against("sqlite+pysqlite") or \
- testing.against("sqlite+pysqlcipher"):
+ if testing.against("sqlite+pysqlite"):
return [o for o in gc.get_objects()
if not isinstance(o, weakref.ref)]
else: