diff --git a/testproj/todo/urls.py b/testproj/todo/urls.py index 637db7c..1add254 100644 --- a/testproj/todo/urls.py +++ b/testproj/todo/urls.py @@ -13,6 +13,6 @@ router.register(r'recursive', views.TodoRecursiveView) urlpatterns = router.urls urlpatterns += [ - url(r'^(?P\d+)/yetanother/(?P\d+)/$', + url(r'^(?P\d+)/yetanothers/(?P\d+)/$', views.NestedTodoView.as_view(), ), ] diff --git a/tests/reference.yaml b/tests/reference.yaml index 6b41d07..0277c6f 100644 --- a/tests/reference.yaml +++ b/tests/reference.yaml @@ -697,9 +697,9 @@ paths: description: A unique integer value identifying this todo. required: true type: integer - /todo/{todo_id}/yetanother/{yetanother_id}/: + /todo/{todo_id}/yetanothers/{yetanother_id}/: get: - operationId: todo_yetanother_read + operationId: todo_yetanothers_read description: '' parameters: [] responses: