Skip to content

Commit

Permalink
rubocop: fix Style/TrailingCommaInHashLiteral
Browse files Browse the repository at this point in the history
  • Loading branch information
bastelfreak committed Mar 17, 2023
1 parent b831092 commit e87f17e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
8 changes: 0 additions & 8 deletions .rubocop_todo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,3 @@ RSpec/ContextWording:
RSpec/DescribeClass:
Exclude:
- 'spec/acceptance/example_spec.rb'

# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyleForMultiline.
# SupportedStylesForMultiline: comma, consistent_comma, no_comma
Style/TrailingCommaInHashLiteral:
Exclude:
- 'lib/beaker-rspec/helpers/serverspec.rb'
2 changes: 1 addition & 1 deletion lib/beaker-rspec/helpers/serverspec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def ssh_exec!(node, command)
{
:exit_status => r.exit_code,
:stdout => r.stdout,
:stderr => r.stderr
:stderr => r.stderr,
}
end

Expand Down

0 comments on commit e87f17e

Please sign in to comment.