summaryrefslogtreecommitdiff
path: root/tests/test_config.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_config.py')
-rw-r--r--tests/test_config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_config.py b/tests/test_config.py
index ea6be75..a23238e 100644
--- a/tests/test_config.py
+++ b/tests/test_config.py
@@ -55,7 +55,7 @@ def test_process_config(request_app=test_request_config):
assert CONFIG[test_key] == 'bar'
assert CONFIG['process_var'] == 'foo'
CONFIG.pop_process_config()
-
+
assert_raises(AttributeError, lambda: 'process_var' not in CONFIG)
assert_raises(IndexError, CONFIG.pop_process_config)