diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-06-13 20:47:18 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-06-13 20:47:18 -0400 |
| commit | 92ac4a9f88a5bfb1f7ea3e34b701e4eff9a65f91 (patch) | |
| tree | baf0aaeb205060c3eacf83192c16408a06285d79 | |
| parent | bcbfcca2360a58ec1b5a9da1b2c45e8781904b82 (diff) | |
| download | sqlalchemy-92ac4a9f88a5bfb1f7ea3e34b701e4eff9a65f91.tar.gz | |
- revert this change which was inadvertently included in the
fix for #3451
| -rw-r--r-- | test/aaa_profiling/test_memusage.py | 3 |
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: |
