Fixed Style/SpaceInsideHashLiteralBraces RuboCop offense

Bug: T111184
Change-Id: I77573a78136dc9a8fd6f8b7364e23c8bf6db5e7f
This commit is contained in:
Željko Filipin 2015-09-02 17:19:50 +02:00 committed by Dan Duvall
parent 4e4baedb2b
commit 2bda4398f4
2 changed files with 1 additions and 7 deletions

View File

@ -6,12 +6,6 @@
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.
# Offense count: 2
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyleForEmptyBraces, SupportedStyles.
Style/SpaceInsideHashLiteralBraces:
EnforcedStyle: no_space
# Offense count: 13
# Cop supports --auto-correct.
# Configuration parameters: SupportedStyles.

View File

@ -11,7 +11,7 @@
#
Given(/^I am at page that does not exist$/) do
visit(DoesNotExistPage, using_params: {page_name: @random_string})
visit(DoesNotExistPage, using_params: { page_name: @random_string })
end
When(/^I click link Create source$/) do