Merge branch 'qa-317' into 'master'

[QA] Fix a 'superclass must be a Class' error

Closes gitlab-qa#317

See merge request gitlab-org/gitlab-ce!21340
This commit is contained in:
Rémy Coutable 2018-08-22 08:43:39 +00:00
commit 1c95c5ec86
4 changed files with 4 additions and 4 deletions

View file

@ -2,7 +2,7 @@ module QA
module Scenario
module Test
module Integration
class Github < Test::Instance
class Github < Test::Instance::All
tags :github
def perform(address, *rspec_options)

View file

@ -2,7 +2,7 @@ module QA
module Scenario
module Test
module Integration
class Kubernetes < Test::Instance
class Kubernetes < Test::Instance::All
tags :kubernetes
end
end

View file

@ -2,7 +2,7 @@ module QA
module Scenario
module Test
module Integration
class LDAP < Test::Instance
class LDAP < Test::Instance::All
tags :ldap
end
end

View file

@ -6,7 +6,7 @@ module QA
# Run test suite against any GitLab instance where mattermost is enabled,
# including staging and on-premises installation.
#
class Mattermost < Test::Instance
class Mattermost < Test::Instance::All
tags :core, :mattermost
def perform(address, mattermost, *rspec_options)