1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-24 21:43:55 +00:00

increase delay in test to avoid small time differences

This commit is contained in:
Daniel Graña 2013-06-27 17:09:26 -03:00
parent 0f4b70f582
commit 06b9702984

View File

@ -29,10 +29,10 @@ class CrawlTestCase(TestCase):
@defer.inlineCallbacks
def test_delay(self):
spider = FollowAllSpider()
yield docrawl(spider, {"DOWNLOAD_DELAY": 0.3})
yield docrawl(spider, {"DOWNLOAD_DELAY": 1})
t = spider.times[0]
for t2 in spider.times[1:]:
self.assertTrue(t2-t > 0.15, "download delay too small: %s" % (t2-t))
self.assertTrue(t2-t > 0.45, "download delay too small: %s" % (t2-t))
t = t2
@defer.inlineCallbacks