summaryrefslogtreecommitdiff
path: root/tests/test_config.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-04-21 15:26:47 +0200
committerVictor Stinner <victor.stinner@gmail.com>2015-04-21 15:26:47 +0200
commit204ef6b7198467a5bd94ae3235b3a318ff0ccc2b (patch)
treeb0a470e46326b709d090a900847bbb004d355607 /tests/test_config.py
parent3c66ac4214f3a86f7530e75564dbb876e034581f (diff)
downloadpaste-git-204ef6b7198467a5bd94ae3235b3a318ff0ccc2b.tar.gz
Strip trailing spaces
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)