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-03-23 16:48:24 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-03-23 16:48:24 +0300
commit249084b48a86a99c02eefe45b507ebcdf811c20f (patch)
tree1e703a08ca98cf8bb41e7ced07f74d72260396e0 /spec/features/container_registry_spec.rb
parentf451173a191474be681d208eceb6a0148ba2c0d0 (diff)
Fix some specs using the old ContainerImage const
Diffstat (limited to 'spec/features/container_registry_spec.rb')
-rw-r--r--spec/features/container_registry_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/features/container_registry_spec.rb b/spec/features/container_registry_spec.rb
index 862c9fbf6c0..0199d08ab63 100644
--- a/spec/features/container_registry_spec.rb
+++ b/spec/features/container_registry_spec.rb
@@ -39,7 +39,7 @@ describe "Container Registry" do
end
it do
- expect_any_instance_of(ContainerImage).to receive(:delete_tags).and_return(true)
+ expect_any_instance_of(ContainerRepository).to receive(:delete_tags).and_return(true)
click_on 'Remove image'
end