(rubocop) Fix Layout/SpaceInsideLiteralHashBraces

This commit is contained in:
Tim Sharpe 2019-02-03 12:32:05 +11:00
parent eb0d31260f
commit b8971c040a
6 changed files with 28 additions and 28 deletions

View file

@ -7,7 +7,7 @@ describe Service do
describe '#initialize' do
it 'store configuration options' do
options = MockOptions.new({})
config = {'url' => 'http://example.url'}
config = { 'url' => 'http://example.url' }
service = Service.new(options, config)
expect(service.config).to include config
end