From ff8abd7048e0da4625b80bbae64c888a517e870f Mon Sep 17 00:00:00 2001 From: Guillaume Date: Mon, 25 Dec 2017 23:59:36 +0100 Subject: [PATCH] small test change --- test/test_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_app.py b/test/test_app.py index fba8dd9..dbfc199 100644 --- a/test/test_app.py +++ b/test/test_app.py @@ -20,7 +20,7 @@ class TestEsiApp(unittest.TestCase): def setUp(self, urlopen_mock): # I hate those mock... thx urlopen instead of requests... urlopen_mock.return_value = open('test/resources/meta_swagger.json') - self.app = EsiApp() + self.app = EsiApp(cache_time=None) def test_app_op_attribute(self): self.assertTrue(self.app.op)