summaryrefslogtreecommitdiff
path: root/spec/support/matchers
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2019-12-23 12:08:18 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2019-12-23 12:08:18 +0000
commit4aeb8a02c506eaa8f0710ee17edd9e35dd68d280 (patch)
tree42a0ab818ee72a5f99d017f7ca05b6b6349e142a /spec/support/matchers
parentb8bb2148c282f5ebaf5cd3c83d905285902a1446 (diff)
downloadgitlab-ce-4aeb8a02c506eaa8f0710ee17edd9e35dd68d280.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/support/matchers')
-rw-r--r--spec/support/matchers/graphql_matchers.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/matchers/graphql_matchers.rb b/spec/support/matchers/graphql_matchers.rb
index dbf457a9200..282deea4606 100644
--- a/spec/support/matchers/graphql_matchers.rb
+++ b/spec/support/matchers/graphql_matchers.rb
@@ -8,7 +8,7 @@ end
RSpec::Matchers.define :have_graphql_fields do |*expected|
def expected_field_names
- expected.map { |name| GraphqlHelpers.fieldnamerize(name) }
+ Array.wrap(expected).map { |name| GraphqlHelpers.fieldnamerize(name) }
end
match do |kls|