From ce015f5b755221d3cf5a08aa8a2feb269d07f694 Mon Sep 17 00:00:00 2001 From: Blake Erickson Date: Wed, 11 Aug 2021 11:00:48 -0600 Subject: [PATCH] DEV: Fix api docs tagging format (#14010) When specifying multiple tags they should be separate strings, not a single string. --- spec/requests/api/user_badges_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/requests/api/user_badges_spec.rb b/spec/requests/api/user_badges_spec.rb index 5f2e448e2c..62ef031c9c 100644 --- a/spec/requests/api/user_badges_spec.rb +++ b/spec/requests/api/user_badges_spec.rb @@ -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 }