From 7c7e7db9e304a1302a1a6f3c2a285d598ee3f61c Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Fri, 4 May 2012 20:44:00 -0400 Subject: [PATCH] callcount bump to account for sqlite's silly column name workaround --- test/aaa_profiling/test_resultset.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/aaa_profiling/test_resultset.py b/test/aaa_profiling/test_resultset.py index 632f67c6a2..f1358b7480 100644 --- a/test/aaa_profiling/test_resultset.py +++ b/test/aaa_profiling/test_resultset.py @@ -84,10 +84,10 @@ class ExecutionTest(fixtures.TestBase): # ensure initial connect activities complete e.execute("select 1") - @profiling.function_call_count(versions={'2.4':41, '2.5':60, - '2.6':60, '3':61, - '2.7':60, - '2.6+cextension':60}, + @profiling.function_call_count(versions={'2.4':41, '2.5':65, + '2.6':65, '3':61, + '2.7':65, + '2.6+cextension':65}, variance=.05) def go(): e.execute("select 1") -- 2.47.2