]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
callcounts being weird
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 17 Jul 2011 22:47:06 +0000 (18:47 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 17 Jul 2011 22:47:06 +0000 (18:47 -0400)
test/aaa_profiling/test_orm.py
test/aaa_profiling/test_resultset.py

index 2066df6c7d2a047f4c89575bc3b84ae06d403ebe..02177ed344bb93d7aca8770cd4bf80249740dc11 100644 (file)
@@ -79,7 +79,7 @@ class MergeTest(_base.MappedTest):
         # using sqlite3 the C extension took it back up to approx. 1257
         # (py2.6)
 
-        @profiling.function_call_count(1257, versions={'2.4': 807})
+        @profiling.function_call_count(1189, versions={'2.4': 807})
         def go():
             p2 = sess2.merge(p1)
         go()
index 897c2966058341a3af6df256e3d443df1d495ca8..fb3023e1e4186b8006bd7a5028b1dbb0aeed89e3 100644 (file)
@@ -30,7 +30,7 @@ class ResultSetTest(TestBase, AssertsExecutionResults):
         metadata.drop_all()
 
     @profiling.function_call_count(14416, versions={'2.4': 13214,
-                                   '2.6+cextension': 409, '2.7+cextension':438})
+                                   '2.6+cextension': 409, '2.7+cextension':409})
     def test_string(self):
         [tuple(row) for row in t.select().execute().fetchall()]