Skip to content

Commit 9aac0a4

Browse files
committed
rubocop -a
1 parent a8ef9ac commit 9aac0a4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@ Layout/SpaceInsideHashLiteralBraces:
5252
Layout/CaseIndentation:
5353
Enabled: true
5454

55-
Lint/EndAlignment:
55+
Layout/EndAlignment:
5656
Enabled: true
5757
EnforcedStyleAlignWith: variable

test/test_rake_multi_task.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,14 +84,14 @@ def test_cross_thread_prerequisite_failures
8484
end
8585

8686
def test_task_not_executed_if_dependant_task_failed_concurrently
87-
multitask :default => [:one, :two]
87+
multitask default: [:one, :two]
8888

8989
task :one do
9090
raise
9191
end
9292

9393
task_two_was_executed = false
94-
task :two => :one do
94+
task two: :one do
9595
task_two_was_executed = true
9696
end
9797

0 commit comments

Comments
 (0)