Skip to content

Commit

Permalink
rubocop: autofix
Browse files Browse the repository at this point in the history
  • Loading branch information
bastelfreak committed Apr 23, 2024
1 parent 7e57fba commit 5e8044e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/mock_vsphere_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -88,13 +88,13 @@ def self.set_config(conf)
end

def self.powerOn
@@vms.each do |_name, vm|
@@vms.each_value do |vm|
vm.powerState = 'poweredOn'
end
end

def self.powerOff
@@vms.each do |_name, vm|
@@vms.each_value do |vm|
vm.powerState = 'poweredOff'
end
end
Expand Down

0 comments on commit 5e8044e

Please sign in to comment.