Skip to content

Commit

Permalink
rubocop -a
Browse files Browse the repository at this point in the history
  • Loading branch information
hsbt committed Mar 20, 2018
1 parent a8ef9ac commit 9aac0a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@ Layout/SpaceInsideHashLiteralBraces:
Layout/CaseIndentation:
Enabled: true

Lint/EndAlignment:
Layout/EndAlignment:
Enabled: true
EnforcedStyleAlignWith: variable
4 changes: 2 additions & 2 deletions test/test_rake_multi_task.rb
Original file line number Diff line number Diff line change
Expand Up @@ -84,14 +84,14 @@ def test_cross_thread_prerequisite_failures
end

def test_task_not_executed_if_dependant_task_failed_concurrently
multitask :default => [:one, :two]
multitask default: [:one, :two]

task :one do
raise
end

task_two_was_executed = false
task :two => :one do
task two: :one do
task_two_was_executed = true
end

Expand Down

0 comments on commit 9aac0a4

Please sign in to comment.