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:
authorFilipa Lacerda <filipa@gitlab.com>2018-02-20 19:50:14 +0300
committerFilipa Lacerda <filipa@gitlab.com>2018-02-20 19:50:14 +0300
commite1d587f5d6fe76900dd7cce26178464d4455fb8b (patch)
tree52e7748c448ba34bd4eb8ed62835e22679125014 /spec/features/projects/clusters/applications_spec.rb
parent5aa4d7bfb4a3ffa7881bdba0a0dcc50cdb245684 (diff)
Remove duplicate ID
Diffstat (limited to 'spec/features/projects/clusters/applications_spec.rb')
-rw-r--r--spec/features/projects/clusters/applications_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/features/projects/clusters/applications_spec.rb b/spec/features/projects/clusters/applications_spec.rb
index b984bdb5803..fd322d2eeb4 100644
--- a/spec/features/projects/clusters/applications_spec.rb
+++ b/spec/features/projects/clusters/applications_spec.rb
@@ -99,13 +99,13 @@ feature 'Clusters Applications', :js do
expect(page.find(:css, '.js-cluster-application-install-button')['disabled']).to eq('true')
expect(page.find(:css, '.js-cluster-application-install-button')).to have_content('Installed')
expect(page).to have_selector('.js-no-ip-message')
- expect(page.find(:css, 'input#ipAddress')['placeholder']).to eq('?')
+ expect(page.find(:css, 'input.js-ip-address')['placeholder']).to eq('?')
# We receive the external IP address and display
Clusters::Cluster.last.application_ingress.update!(external_ip: '192.168.1.100')
expect(page).not_to have_selector('.js-no-ip-message')
- expect(page.find(:css, 'input#ipAddress')['placeholder']).to eq('192.168.1.100')
+ expect(page.find(:css, 'input.js-ip-address')['placeholder']).to eq('192.168.1.100')
end
expect(page).to have_content('Ingress was successfully installed on your Kubernetes cluster')