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

Signed-off-by: Rémy Coutable <remy@rymai.me>
This commit is contained in:
Rémy Coutable 2018-08-22 10:24:50 +02:00
parent 1bbe394526
commit 2fd1dcdbb7
No known key found for this signature in database
GPG Key ID: 98DFFD1C0C62B70B
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)