From 3fdc113d81268235e703b1b1873512fb03de5284 Mon Sep 17 00:00:00 2001 From: Benoit Chesneau Date: Mon, 28 Dec 2015 14:21:40 +0100 Subject: [PATCH] fix gaiohttp test fix #1164 --- tests/test_gaiohttp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_gaiohttp.py b/tests/test_gaiohttp.py index caeacf03..54405561 100644 --- a/tests/test_gaiohttp.py +++ b/tests/test_gaiohttp.py @@ -59,7 +59,7 @@ class WorkerTests(unittest.TestCase): self.worker.wsgi = mock.Mock() self.worker.loop = mock.Mock() self.worker.log = mock.Mock() - self.worker.cfg = mock.Mock() + self.worker.cfg = Config() f = self.worker.factory( self.worker.wsgi, ('localhost', 8080))