From 89e1df0bba58fc8d420fd9f293c4e325e06fc431 Mon Sep 17 00:00:00 2001 From: shimizukawa Date: Fri, 6 Jan 2017 23:10:52 +0900 Subject: [PATCH] pytest: nits --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 1c5be83f6..c83c3f94b 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -36,7 +36,7 @@ def app(app_params, make_app): """ args, kwargs = app_params app_ = make_app(*args, **kwargs) - yield app_ + return app_ @pytest.fixture(scope='function')