Skip to content

Commit

Permalink
make rubocop happy
Browse files Browse the repository at this point in the history
  • Loading branch information
jreidinger committed Oct 13, 2016
1 parent 2e1c992 commit d6d3816
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/ruby/wfm_spec.rb
Expand Up @@ -30,11 +30,11 @@ module Yast
end

it "raises error if first parameter is not string" do
expect{WFM.CallFunction(:test_client)}.to raise_error(ArgumentError)
expect { WFM.CallFunction(:test_client) }.to raise_error(ArgumentError)
end

it "raises error if second parameter is not array" do
expect{WFM.CallFunction("test_client", nil)}.to raise_error(ArgumentError)
expect { WFM.CallFunction("test_client", nil) }.to raise_error(ArgumentError)
end
end

Expand Down

0 comments on commit d6d3816

Please sign in to comment.