Fix path for tests

This commit is contained in:
Martin Whitehouse 2022-06-20 16:34:32 +02:00
parent 6a1f430496
commit 2910664950
No known key found for this signature in database
GPG Key ID: 8492A7A45769CD35

View File

@ -2,6 +2,6 @@ from django.urls import include, path
from django.contrib import admin
urlpatterns = [
path('helpdesk/', include('helpdesk.urls', namespace='helpdesk')),
path('', include('helpdesk.urls', namespace='helpdesk')),
path('admin/', admin.site.urls),
]