Skip to content

Commit

Permalink
Cleanup some rubocop warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Fitzgerald committed Mar 18, 2014
1 parent b5bf2c1 commit 5237168
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/kitchen/driver/digitalocean.rb
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def create_server
def data
@data ||= begin
json_file = File.expand_path(
File.join(%w{.. .. .. .. data digitalocean.json}),
File.join(%w(.. .. .. .. data digitalocean.json)),
__FILE__
)
JSON.load(IO.read(json_file))
Expand All @@ -156,7 +156,7 @@ def debug_server_config
debug("digitalocean:flavor_id #{config[:flavor_id]}")
debug("digitalocean:region_id #{config[:region_id]}")
debug("digitalocean:ssh_key_ids #{config[:ssh_key_ids]}")
debug("digitalocean:private_networking s#{config[:private_networking]}")
debug("digitalocean:private_networking #{config[:private_networking]}")
end

def debug_compute_config
Expand Down

0 comments on commit 5237168

Please sign in to comment.