use higher difference on timing

This commit is contained in:
holger krekel 2012-05-18 13:56:49 +02:00
parent e18abfd013
commit 51d94a4a6e
1 changed files with 2 additions and 2 deletions

View File

@ -491,11 +491,11 @@ class TestDurations:
import time
frag = 0.02
def test_2():
time.sleep(frag*2)
time.sleep(frag*5)
def test_1():
time.sleep(frag)
def test_3():
time.sleep(frag*3)
time.sleep(frag*10)
"""
def test_calls(self, testdir):