diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-06-04 21:58:56 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-06-04 21:58:56 -0400 |
| commit | eae80bb046e08afe395ccf82b561f0cbbec443ff (patch) | |
| tree | e85e9df29e84ea40ffcafbf0207cb2102afb4f31 | |
| parent | 09080baad1a9f910a5a406dfad9241104ccbc6d8 (diff) | |
| download | sqlalchemy-eae80bb046e08afe395ccf82b561f0cbbec443ff.tar.gz | |
put some variance on this as it's a difference between 9 and 60 calls
| -rw-r--r-- | test/aaa_profiling/test_resultset.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/aaa_profiling/test_resultset.py b/test/aaa_profiling/test_resultset.py index 451912c8f..f84dd72c8 100644 --- a/test/aaa_profiling/test_resultset.py +++ b/test/aaa_profiling/test_resultset.py @@ -55,7 +55,7 @@ class ResultSetTest(fixtures.TestBase, AssertsExecutionResults): def test_contains_doesnt_compile(self): row = t.select().execute().first() c1 = Column('some column', Integer) + Column("some other column", Integer) - @profiling.function_call_count(9) + @profiling.function_call_count(9, variance=.15) def go(): c1 in row go() |
