diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-11-28 12:55:59 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-11-28 12:55:59 -0500 |
| commit | 17fdeb77adadc1833ecee388060c45444d91b7bd (patch) | |
| tree | 5cab601350b1d81b821377bc3a655cd7992e1d5a /test/aaa_profiling/test_memusage.py | |
| parent | d14d171772c343203bbceee3d40ca09427b8b869 (diff) | |
| download | sqlalchemy-17fdeb77adadc1833ecee388060c45444d91b7bd.tar.gz | |
- fix test related to [ticket:1980]
Diffstat (limited to 'test/aaa_profiling/test_memusage.py')
| -rw-r--r-- | test/aaa_profiling/test_memusage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/aaa_profiling/test_memusage.py b/test/aaa_profiling/test_memusage.py index 5fa40a997..7c0979d57 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): |
