Skip to content

Commit

Permalink
make rubocop happy
Browse files Browse the repository at this point in the history
  • Loading branch information
jreidinger committed Aug 30, 2016
1 parent 3a02d1e commit d74bb22
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/lib/bootloader/device_map.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def read
end

def write
log.info "writing device map: #{to_s}"
log.info "writing device map: #{self}"
@model.save
end

Expand Down
6 changes: 3 additions & 3 deletions test/autoyast_converter_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@
allow(Yast::Arch).to receive(:architecture).and_return("x86_64")
data = {
"loader_type" => "grub2",
"device_map" => [
{"firmware" => "hd0", "linux" => "/dev/vda"},
{"firmware" => "hd1", "linux" => "/dev/vdb"}
"device_map" => [
{ "firmware" => "hd0", "linux" => "/dev/vda" },
{ "firmware" => "hd1", "linux" => "/dev/vdb" }
]
}

Expand Down

0 comments on commit d74bb22

Please sign in to comment.