Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-04-03 16:52:24 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-04-03 16:52:24 +0300
commitbaa00d542478759be225a45dc805d0314e1921d2 (patch)
tree8a959e57256764f536fe36db0b6876171843b70d /spec/models/namespace_spec.rb
parent0af4cbc57266cd7d2c433442c537da5c8970a3da (diff)
Refactor container registry repository tag stubs
Diffstat (limited to 'spec/models/namespace_spec.rb')
-rw-r--r--spec/models/namespace_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/models/namespace_spec.rb b/spec/models/namespace_spec.rb
index e1bfd20a6aa..197fd558dd7 100644
--- a/spec/models/namespace_spec.rb
+++ b/spec/models/namespace_spec.rb
@@ -153,7 +153,7 @@ describe Namespace, models: true do
before do
stub_container_registry_config(enabled: true)
- stub_container_registry_tags('tag')
+ stub_container_registry_tags(repository: :any, tags: ['tag'])
create(:empty_project, namespace: @namespace, container_repositories: [container_repository])