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
path: root/qa
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2018-10-10 19:08:34 +0300
committerRémy Coutable <remy@rymai.me>2018-10-10 19:08:34 +0300
commit69ea38dcadfbf190b2d8d06af9651b6a675233cc (patch)
tree18a5937609a687b5f1916930f3fc7f2e5c9cdd04 /qa
parent39702ce6859864fc743caefc1b40a1a71d6d9ffe (diff)
parent998b598fda8c53300e4e543c06b9ff20ebe9f64c (diff)
Merge branch 'ce-quality-nightly-22-fix-uninitialized-constant-QA-Page-Menu-qa' into 'master'
[QA] Fix a wrong constant name Closes gitlab-org/quality/nightly#22 See merge request gitlab-org/gitlab-ce!22264
Diffstat (limited to 'qa')
-rw-r--r--qa/qa/specs/features/browser_ui/3_create/repository/add_file_template_spec.rb2
-rw-r--r--qa/qa/specs/features/browser_ui/3_create/web_ide/add_file_template_spec.rb2
-rw-r--r--qa/qa/specs/features/browser_ui/7_configure/auto_devops/create_project_with_auto_devops_spec.rb2
3 files changed, 3 insertions, 3 deletions
diff --git a/qa/qa/specs/features/browser_ui/3_create/repository/add_file_template_spec.rb b/qa/qa/specs/features/browser_ui/3_create/repository/add_file_template_spec.rb
index 57892b65e28..c7edcf4c025 100644
--- a/qa/qa/specs/features/browser_ui/3_create/repository/add_file_template_spec.rb
+++ b/qa/qa/specs/features/browser_ui/3_create/repository/add_file_template_spec.rb
@@ -18,7 +18,7 @@ module QA
project.description = 'Add file templates via the Files view'
end
- Page::Menu::Main.act { sign_out }
+ Page::Main::Menu.act { sign_out }
end
templates = [
diff --git a/qa/qa/specs/features/browser_ui/3_create/web_ide/add_file_template_spec.rb b/qa/qa/specs/features/browser_ui/3_create/web_ide/add_file_template_spec.rb
index dc96b19d36d..ab5d97d5b66 100644
--- a/qa/qa/specs/features/browser_ui/3_create/web_ide/add_file_template_spec.rb
+++ b/qa/qa/specs/features/browser_ui/3_create/web_ide/add_file_template_spec.rb
@@ -27,7 +27,7 @@ module QA
page.commit_changes
end
- Page::Menu::Main.act { sign_out }
+ Page::Main::Menu.act { sign_out }
end
templates = [
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 785897f4a97..3735bc00aff 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
@@ -66,7 +66,7 @@ module QA
expect(pipeline).to have_build('production', status: :success, wait: 1200)
end
- Page::Menu::Side.act { click_operations_environments }
+ Page::Project::Menu.act { click_operations_environments }
Page::Project::Operations::Environments::Index.perform do |index|
index.go_to_environment('production')
end