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:
authorKamil Trzcinski <ayufan@ayufan.eu>2016-06-21 14:08:10 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2016-06-21 14:08:10 +0300
commit70606bf0c13212eb4dabf4314b783830dd01dbfc (patch)
tree92f305e93771936174855da681fc786903858634 /spec/features/container_registry_spec.rb
parent44b8b77e02423ce97f9abe80e0335f4f4c453c83 (diff)
Show proper image ID on registry page
Diffstat (limited to 'spec/features/container_registry_spec.rb')
-rw-r--r--spec/features/container_registry_spec.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/features/container_registry_spec.rb b/spec/features/container_registry_spec.rb
index 53b4f027117..203e55a36f2 100644
--- a/spec/features/container_registry_spec.rb
+++ b/spec/features/container_registry_spec.rb
@@ -26,7 +26,8 @@ describe "Container Registry" do
end
context 'when there are tags' do
- it { expect(page).to have_content(tag_name)}
+ it { expect(page).to have_content(tag_name) }
+ it { expect(page).to have_content('d7a513a66') }
end
end