]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- revert this change which was inadvertently included in the
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 14 Jun 2015 00:47:18 +0000 (20:47 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 14 Jun 2015 00:47:18 +0000 (20:47 -0400)
fix for #3451

test/aaa_profiling/test_memusage.py

index a777a8aa1dc39577a5b78d40d294889147f96208..63883daac6bb785a5588ea1981a1767e34668b3c 100644 (file)
@@ -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: