Skip to content

Commit 78ee2a4

Browse files
committed
rubocop: fix Style/TrailingCommaInHashLiteral
1 parent c231952 commit 78ee2a4

2 files changed

Lines changed: 1 addition & 9 deletions

File tree

.rubocop_todo.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,3 @@ RSpec/ContextWording:
4242
RSpec/DescribeClass:
4343
Exclude:
4444
- 'spec/acceptance/example_spec.rb'
45-
46-
# Offense count: 1
47-
# Cop supports --auto-correct.
48-
# Configuration parameters: EnforcedStyleForMultiline.
49-
# SupportedStylesForMultiline: comma, consistent_comma, no_comma
50-
Style/TrailingCommaInHashLiteral:
51-
Exclude:
52-
- 'lib/beaker-rspec/helpers/serverspec.rb'

lib/beaker-rspec/helpers/serverspec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ def ssh_exec!(node, command)
188188
{
189189
:exit_status => r.exit_code,
190190
:stdout => r.stdout,
191-
:stderr => r.stderr
191+
:stderr => r.stderr,
192192
}
193193
end
194194

0 commit comments

Comments
 (0)