DEV: Fix api docs tagging format (#14010)

When specifying multiple tags they should be separate strings, not a
single string.
This commit is contained in:
Blake Erickson 2021-08-11 11:00:48 -06:00 committed by GitHub
parent f848f6cbb6
commit ce015f5b75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ describe 'user_badges' do
path '/user-badges/{username}.json' do
get 'List badges for a user' do
tags 'Badges, Users'
tags 'Badges', 'Users'
consumes 'application/json'
expected_request_schema = nil
parameter name: :username, in: :path, schema: { type: :string }