diff options
| author | Tom Christie | 2011-05-04 09:21:17 +0100 | 
|---|---|---|
| committer | Tom Christie | 2011-05-04 09:21:17 +0100 | 
| commit | d373b3a067796b8e181be9368fa24e89c572c45e (patch) | |
| tree | eec24eb8f8813ce959511c3572a54c5ee645e227 /djangorestframework/tests/views.py | |
| parent | 8756664e064a18afc4713d921c318cd968f18433 (diff) | |
| download | django-rest-framework-d373b3a067796b8e181be9368fa24e89c572c45e.tar.bz2 | |
Decouple views and resources
Diffstat (limited to 'djangorestframework/tests/views.py')
| -rw-r--r-- | djangorestframework/tests/views.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/djangorestframework/tests/views.py b/djangorestframework/tests/views.py index 9e2e893f..598712d2 100644 --- a/djangorestframework/tests/views.py +++ b/djangorestframework/tests/views.py @@ -3,7 +3,7 @@ from django.test import TestCase  from django.test import Client -urlpatterns = patterns('djangorestframework.views', +urlpatterns = patterns('djangorestframework.utils.staticviews',      url(r'^robots.txt$', 'deny_robots'),      url(r'^favicon.ico$', 'favicon'),      url(r'^accounts/login$', 'api_login'),  | 
