Skip to content

Commit

Permalink
Fix import with test views
Browse files Browse the repository at this point in the history
A stale .pyc file was permitting these to work
  • Loading branch information
Eric Davis committed Sep 4, 2011
1 parent e588ac7 commit a75072c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jimmypage/tests/__init__.py
Expand Up @@ -29,7 +29,7 @@ def test_serve_correct_content_type_from_cache(self):
Otherwise, every response gets served as DEFAULT_CONTENT_TYPE which Otherwise, every response gets served as DEFAULT_CONTENT_TYPE which
would mangle responses that aren't the default Content-Type. would mangle responses that aren't the default Content-Type.
""" """
from jimmypage.test_views import test_text_plain, test_text_html from jimmypage.tests.views import test_text_plain, test_text_html


request = self.factory.get("/content-types/text/plain/") request = self.factory.get("/content-types/text/plain/")
response = test_text_plain(request) response = test_text_plain(request)
Expand Down

0 comments on commit a75072c

Please sign in to comment.