summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRamya Authappan <rauthappan@gitlab.com>2019-04-09 04:48:41 +0000
committerRamya Authappan <rauthappan@gitlab.com>2019-04-09 04:48:41 +0000
commit109f61226f019bd49a53ee48c73d09ffef4c7063 (patch)
tree986f41ed39537eba24ef1c299805a071e6935c13
parent4c30169217703fee62a87c0f7a37b4c80592a860 (diff)
parent5e772106f965fda39a667fc9eacea8236c8f73dc (diff)
downloadgitlab-ce-109f61226f019bd49a53ee48c73d09ffef4c7063.tar.gz
Merge branch 'fix_qa_auto_devops_ci_masking_variable' into 'master'
QA: Change CI value to something that can be masked See merge request gitlab-org/gitlab-ce!27146
-rw-r--r--qa/qa/specs/features/browser_ui/7_configure/auto_devops/create_project_with_auto_devops_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/qa/qa/specs/features/browser_ui/7_configure/auto_devops/create_project_with_auto_devops_spec.rb b/qa/qa/specs/features/browser_ui/7_configure/auto_devops/create_project_with_auto_devops_spec.rb
index bb1f775da75..0971e551db1 100644
--- a/qa/qa/specs/features/browser_ui/7_configure/auto_devops/create_project_with_auto_devops_spec.rb
+++ b/qa/qa/specs/features/browser_ui/7_configure/auto_devops/create_project_with_auto_devops_spec.rb
@@ -40,7 +40,7 @@ module QA
Resource::CiVariable.fabricate! do |resource|
resource.project = @project
resource.key = 'K8S_SECRET_OPTIONAL_MESSAGE'
- resource.value = 'You can see this application secret'
+ resource.value = 'you_can_see_this_variable'
end
# Connect K8s cluster
@@ -99,7 +99,7 @@ module QA
Page::Project::Operations::Environments::Show.perform do |show|
show.view_deployment do
expect(page).to have_content('Hello World!')
- expect(page).to have_content('You can see this application secret')
+ expect(page).to have_content('you_can_see_this_variable')
end
end
end