Make parameters order stable for multi-parameter URLs (#106)

Fixes #105

* Added intermittently failing test for #105
* Make parameter order stable for urls with multiple params
This commit is contained in:
John Carter
2018-04-24 04:16:22 +12:00
committed by Cristi Vîjdea
parent 6dd8ded05d
commit 322971f3e7
5 changed files with 41 additions and 1 deletions
+21
View File
@@ -546,6 +546,27 @@ paths:
description: A unique integer value identifying this todo.
required: true
type: integer
/todo/{todo_id}/yetanother/{yetanother_id}/:
get:
operationId: todo_yetanother_read
description: ''
parameters: []
responses:
'200':
description: ''
schema:
$ref: '#/definitions/TodoYetAnother'
tags:
- todo
parameters:
- name: todo_id
in: path
required: true
type: string
- name: yetanother_id
in: path
required: true
type: string
/users/:
get:
operationId: users_list