Skip to content

Commit

Permalink
make rubocop happy
Browse files Browse the repository at this point in the history
  • Loading branch information
jreidinger committed May 26, 2017
1 parent 2324d99 commit ae451ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/system/test/execute_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
end

it "raises Cheetah::ExecutionFailed if command execution failed" do
expect{Yast::Execute.locally!("false")}.to raise_error(Cheetah::ExecutionFailed)
expect { Yast::Execute.locally!("false") }.to raise_error(Cheetah::ExecutionFailed)
end
end

Expand Down Expand Up @@ -66,7 +66,7 @@
end

it "raises Cheetah::ExecutionFailed if command execution failed" do
expect{Yast::Execute.on_target!("false")}.to raise_error(Cheetah::ExecutionFailed)
expect { Yast::Execute.on_target!("false") }.to raise_error(Cheetah::ExecutionFailed)
end
end
end

0 comments on commit ae451ac

Please sign in to comment.