diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-11-12 23:37:28 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-11-12 23:37:28 -0800 |
commit | 7ebda2e051b51e49544ab75673b19ec5f27d9d45 (patch) | |
tree | 671fd995b2fdb0b9ec69cfcb0e7771f43c13d32d /python/tests/fixtures.py | |
parent | 889606ffac5096610e6123134cb89423c15ef464 (diff) | |
download | fatcat-7ebda2e051b51e49544ab75673b19ec5f27d9d45.tar.gz fatcat-7ebda2e051b51e49544ab75673b19ec5f27d9d45.zip |
more python module refactoring
Diffstat (limited to 'python/tests/fixtures.py')
-rw-r--r-- | python/tests/fixtures.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/python/tests/fixtures.py b/python/tests/fixtures.py index 6ff05495..6f68cf5c 100644 --- a/python/tests/fixtures.py +++ b/python/tests/fixtures.py @@ -4,14 +4,14 @@ import time import json import signal import pytest -import fatcat +import fatcat_web @pytest.fixture def full_app(): - fatcat.app.testing = True - fatcat.app.debug = False - return fatcat.app + fatcat_web.app.testing = True + fatcat_web.app.debug = False + return fatcat_web.app @pytest.fixture def app(full_app): |