1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Removed useless braces to suppress a warning

This commit is contained in:
Nobuyoshi Nakada 2019-09-08 12:54:06 +09:00
parent e9bc8b35c6
commit aedf6946a7
No known key found for this signature in database
GPG key ID: 4BC7D6DF58D8DF60

View file

@ -41,7 +41,7 @@ describe "Logger::LogDevice#new" do
it "receives options via a hash as second argument" do
-> { Logger::LogDevice.new(STDERR,
{ shift_age: 8, shift_size: 10
})}.should_not raise_error
shift_age: 8, shift_size: 10
)}.should_not raise_error
end
end