From: Mike Bayer Date: Sat, 5 May 2012 00:44:00 +0000 (-0400) Subject: callcount bump to account for sqlite's silly column name workaround X-Git-Tag: rel_0_7_7~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7c7e7db9e304a1302a1a6f3c2a285d598ee3f61c;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git callcount bump to account for sqlite's silly column name workaround --- 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")