From f9fddb7b5f12567ec3c7b04372101d2ff91e1a96 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sun, 17 Jul 2011 18:47:06 -0400 Subject: [PATCH] callcounts being weird --- test/aaa_profiling/test_orm.py | 2 +- test/aaa_profiling/test_resultset.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/aaa_profiling/test_orm.py b/test/aaa_profiling/test_orm.py index 2066df6c7d..02177ed344 100644 --- a/test/aaa_profiling/test_orm.py +++ b/test/aaa_profiling/test_orm.py @@ -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() diff --git a/test/aaa_profiling/test_resultset.py b/test/aaa_profiling/test_resultset.py index 897c296605..fb3023e1e4 100644 --- a/test/aaa_profiling/test_resultset.py +++ b/test/aaa_profiling/test_resultset.py @@ -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()] -- 2.47.3