Commit f0c68f8e authored by Gabriel Mazetto's avatar Gabriel Mazetto

Refactor to address codestyle feedback

parent 8dc876cc
...@@ -110,7 +110,7 @@ module QA ...@@ -110,7 +110,7 @@ module QA
autoload :Common, 'qa/page/project/settings/common' autoload :Common, 'qa/page/project/settings/common'
autoload :Repository, 'qa/page/project/settings/repository' autoload :Repository, 'qa/page/project/settings/repository'
autoload :DeployKeys, 'qa/page/project/settings/deploy_keys' 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' autoload :Main, 'qa/page/project/settings/main'
end end
end end
......
...@@ -2,7 +2,7 @@ module QA ...@@ -2,7 +2,7 @@ module QA
module Page module Page
module Project module Project
module Settings module Settings
class AdvancedSettings < Page::Base class Advanced < Page::Base
def rename_to(path) def rename_to(path)
fill_in :project_name, with: path fill_in :project_name, with: path
fill_in :project_path, with: path fill_in :project_path, with: path
......
...@@ -7,7 +7,7 @@ module QA ...@@ -7,7 +7,7 @@ module QA
def expand_advanced_settings(&block) def expand_advanced_settings(&block)
expand_section('section.advanced-settings') do expand_section('section.advanced-settings') do
AdvancedSettings.perform(&block) Advanced.perform(&block)
end end
end 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