Skip to content
This repository has been archived by the owner on Jan 9, 2018. It is now read-only.

Commit

Permalink
Remove debug code, improve variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
idan committed Feb 6, 2012
1 parent 0dcd368 commit 69ad06c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions staticfiles/tests/tests.py
Expand Up @@ -448,10 +448,9 @@ def test_post_processing(self):
'use_default_ignore_patterns': True,
'ignore_patterns': ['*.ignoreme']
}
from pprint import pprint

c = CollectstaticCommand()
stats = c.collect(**collectstatic_args)
collectstatic_cmd = CollectstaticCommand()
stats = collectstatic_cmd.collect(**collectstatic_args)
self.assertTrue(u'cached/css/window.css' in stats['post_processed'])
self.assertTrue(u'cached/css/img/window.png' in stats['unmodified'])

Expand Down

0 comments on commit 69ad06c

Please sign in to comment.