Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[6.13.z] Fix remediate method of CloudInsightsEntity #941

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion airgun/entities/configgroup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class ShowAllConfigGroups(NavigateStep):

@retry_navigation
def step(self, *args, **kwargs):
self.view.menu.select('Configure', 'Config Groups')
self.view.menu.select('Configure', 'Puppet ENC', 'Config Groups')


@navigator.register(ConfigGroupEntity, 'New')
Expand Down
2 changes: 1 addition & 1 deletion airgun/entities/puppet_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class ShowAllPuppetClasses(NavigateStep):

@retry_navigation
def step(self, *args, **kwargs):
self.view.menu.select('Configure', 'Classes')
self.view.menu.select('Configure', 'Puppet ENC', 'Classes')


@navigator.register(PuppetClassEntity, 'Edit')
Expand Down
2 changes: 1 addition & 1 deletion airgun/entities/puppet_environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class ShowAllPuppetEnvironmentsView(NavigateStep):

@retry_navigation
def step(self, *args, **kwargs):
self.view.menu.select('Configure', 'Environments')
self.view.menu.select('Configure', 'Puppet ENC', 'Environments')


@navigator.register(PuppetEnvironmentEntity, 'New')
Expand Down
2 changes: 1 addition & 1 deletion airgun/entities/smart_class_parameter.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class ShowAllSmartClassParameters(NavigateStep):

@retry_navigation
def step(self, *args, **kwargs):
self.view.menu.select('Configure', 'Smart Class Parameters')
self.view.menu.select('Configure', 'Puppet ENC', 'Smart Class Parameters')


@navigator.register(SmartClassParameterEntity, 'Edit')
Expand Down
Loading