Mercurial > moin > 1.9
changeset 2929:0ca160b0e5d2
pep8 fix for test_caching
author | Johannes Berg <johannes AT sipsolutions DOT net> |
---|---|
date | Mon, 29 Oct 2007 17:42:02 +0100 |
parents | 263d4f8009f9 |
children | dc0f45b10ae6 |
files | MoinMoin/_tests/test_caching.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/MoinMoin/_tests/test_caching.py Mon Oct 29 12:03:09 2007 +0100 +++ b/MoinMoin/_tests/test_caching.py Mon Oct 29 17:42:02 2007 +0100 @@ -28,7 +28,7 @@ def test_persistence_pickle(self): """ test if cache persists (on disk), use pickle """ - test_data = {1:2, 2:3, 3: [4, 5, ], } + test_data = {1: 2, 2: 3, 3: [4, 5, ], } cache = caching.CacheEntry(self.request, 'test_arena', 'test_key', 'wiki', use_pickle=True) cache.update(test_data) del cache