summaryrefslogtreecommitdiff
path: root/tests/regressiontests/test_utils/urls.py
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2011-04-02 13:27:17 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2011-04-02 13:27:17 +0000
commit3b94af8a849b4b37051abd5a84a03dc1fd307569 (patch)
treeae3fc8a85e888b6e3d5ff9a6c1a5873fc17732d6 /tests/regressiontests/test_utils/urls.py
parentbcdbafc88aaf35682165f8a814d1f13daf095fac (diff)
Modified some regression tests to make them independent of the default root urlconf.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15999 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/test_utils/urls.py')
-rw-r--r--tests/regressiontests/test_utils/urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regressiontests/test_utils/urls.py b/tests/regressiontests/test_utils/urls.py
index 2c5821bc44..f3df170835 100644
--- a/tests/regressiontests/test_utils/urls.py
+++ b/tests/regressiontests/test_utils/urls.py
@@ -4,5 +4,5 @@ import views
urlpatterns = patterns('',
- (r'^get_person/(\d+)/$', views.get_person),
+ (r'^test_utils/get_person/(\d+)/$', views.get_person),
)