Commit f0c68f8e authored by Gabriel Mazetto's avatar Gabriel Mazetto

Refactor to address codestyle feedback

parent 8dc876cc
......@@ -110,7 +110,7 @@ module QA
autoload :Common, 'qa/page/project/settings/common'
autoload :Repository, 'qa/page/project/settings/repository'
autoload :DeployKeys, 'qa/page/project/settings/deploy_keys'
autoload :AdvancedSettings, 'qa/page/project/settings/advanced_settings'
autoload :Advanced, 'qa/page/project/settings/advanced'
autoload :Main, 'qa/page/project/settings/main'
end
end
......
......@@ -2,7 +2,7 @@ module QA
module Page
module Project
module Settings
class AdvancedSettings < Page::Base
class Advanced < Page::Base
def rename_to(path)
fill_in :project_name, with: path
fill_in :project_path, with: path
......
......@@ -7,7 +7,7 @@ module QA
def expand_advanced_settings(&block)
expand_section('section.advanced-settings') do
AdvancedSettings.perform(&block)
Advanced.perform(&block)
end
end
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment