From: Mike Bayer Date: Sun, 28 Nov 2010 17:55:59 +0000 (-0500) Subject: - fix test related to [ticket:1980] X-Git-Tag: rel_0_7b1~231 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=17fdeb77adadc1833ecee388060c45444d91b7bd;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - fix test related to [ticket:1980] --- diff --git a/test/aaa_profiling/test_memusage.py b/test/aaa_profiling/test_memusage.py index 5fa40a9978..7c0979d570 100644 --- a/test/aaa_profiling/test_memusage.py +++ b/test/aaa_profiling/test_memusage.py @@ -514,7 +514,7 @@ class MemUsageTest(EnsureZeroed): table1 = Table("mytable", metadata, Column('col1', Integer, primary_key=True, test_needs_autoincrement=True), - Column('col2', PickleType(comparator=operator.eq)) + Column('col2', PickleType(comparator=operator.eq, mutable=True)) ) class Foo(object):