diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-11-22 18:05:05 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-11-22 18:05:05 -0500 |
| commit | 4de3b28abce67a09dfde1cffd8a244b6542ae8c1 (patch) | |
| tree | a5ec8ef126ce6dc82eff4e8d9e7393ac80dcbb77 /test/aaa_profiling/test_compiler.py | |
| parent | 90b6ca30e430a06ed1d1696f3881ae72c6014ecd (diff) | |
| download | sqlalchemy-4de3b28abce67a09dfde1cffd8a244b6542ae8c1.tar.gz | |
fixes to actually get tests to pass
Diffstat (limited to 'test/aaa_profiling/test_compiler.py')
| -rw-r--r-- | test/aaa_profiling/test_compiler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/aaa_profiling/test_compiler.py b/test/aaa_profiling/test_compiler.py index f949ce6ea..a7ce7a70b 100644 --- a/test/aaa_profiling/test_compiler.py +++ b/test/aaa_profiling/test_compiler.py @@ -39,11 +39,11 @@ class CompileTest(fixtures.TestBase, AssertsExecutionResults): def test_insert(self): t1.insert().compile(dialect=self.dialect) - @profiling.function_call_count(versions={'2.6':53, '2.7':53}) + @profiling.function_call_count(versions={'2.6':56, '2.7':56}) def test_update(self): t1.update().compile(dialect=self.dialect) - @profiling.function_call_count(versions={'2.6':110, '2.7':110, '3':115}) + @profiling.function_call_count(versions={'2.6':117, '2.7':117, '3':118}) def test_update_whereclause(self): t1.update().where(t1.c.c2==12).compile(dialect=self.dialect) |
