diff options
author | Jason Kirtland <jek@discorporate.us> | 2008-07-15 18:21:24 +0000 |
---|---|---|
committer | Jason Kirtland <jek@discorporate.us> | 2008-07-15 18:21:24 +0000 |
commit | 6917ffb9bdae19a368abef5fdbd4655fc27fcdf2 (patch) | |
tree | 30e61c46eb43cc5d83dc4ae6464aa55e77a5efc5 /test/profiling/compiler.py | |
parent | 4fe412795883a75057829f13251bf4a3038931d8 (diff) | |
download | sqlalchemy-6917ffb9bdae19a368abef5fdbd4655fc27fcdf2.tar.gz |
And thus ends support for Python 2.3.
Diffstat (limited to 'test/profiling/compiler.py')
-rw-r--r-- | test/profiling/compiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/profiling/compiler.py b/test/profiling/compiler.py index a62c63c6b..b37b63297 100644 --- a/test/profiling/compiler.py +++ b/test/profiling/compiler.py @@ -15,7 +15,7 @@ class CompileTest(TestBase, AssertsExecutionResults): Column('c1', Integer, primary_key=True), Column('c2', String(30))) - @profiling.function_call_count(67, {'2.3': 44, '2.4': 42}) + @profiling.function_call_count(72, {'2.3': 44, '2.4': 46}) def test_insert(self): t1.insert().compile() |