diff options
| author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2014-08-30 13:06:33 +0200 |
|---|---|---|
| committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2014-08-30 13:27:56 +0200 |
| commit | df251e033c88e6b5982f490ed863aa96c057bc8c (patch) | |
| tree | 151e1b99ff4767e16312c6ad86676eef23554c01 | |
| parent | eacf244506d8b7e6dd6483834ea122fec864da85 (diff) | |
Fixed a PEP 8 error.
| -rw-r--r-- | tests/cache/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cache/tests.py b/tests/cache/tests.py index 2ee7a6200b..70a5e1165d 100644 --- a/tests/cache/tests.py +++ b/tests/cache/tests.py @@ -921,7 +921,7 @@ class DBCacheTests(BaseCacheTests, TransactionTestCase): self.assertEqual(stdout.getvalue(), "Cache table 'test cache table' already exists.\n" * len([ k for k, v in settings.CACHES.items() - if v['BACKEND']=='django.core.cache.backends.db.DatabaseCache']) + if v['BACKEND'] == 'django.core.cache.backends.db.DatabaseCache']) ) def test_createcachetable_with_table_argument(self): |
