diff options
| author | Brandon Cazander | 2015-01-28 17:08:34 -0800 |
|---|---|---|
| committer | Brandon Cazander | 2015-02-02 20:37:33 -0800 |
| commit | 77d061d234e03004f34058028707ecddfc730fae (patch) | |
| tree | b67e2414ba475a2122cb46dcd737b1a39b92911e /tests/urls.py | |
| parent | e63f49bd1d55501f766ca2e3f9c0c9fa3cfa19ab (diff) | |
| download | django-rest-framework-77d061d234e03004f34058028707ecddfc730fae.tar.bz2 | |
Provide rest_framework.resolve. Fixes #2489
Diffstat (limited to 'tests/urls.py')
| -rw-r--r-- | tests/urls.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/urls.py b/tests/urls.py index 41f527df..742e361d 100644 --- a/tests/urls.py +++ b/tests/urls.py @@ -1,6 +1,6 @@ """ Blank URLConf just to keep the test suite happy """ -from django.conf.urls import patterns +from tests import test_relations -urlpatterns = patterns('') +urlpatterns = test_relations.urlpatterns |
