From: Toshi MARUYAMA Date: Tue, 26 Nov 2019 06:30:11 +0000 (+0000) Subject: cleanup: rubocop: fix Layout/SpaceInsideBlockBraces in test/unit/watcher_test.rb X-Git-Tag: 4.2.0~1326 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=3c7037f2b40964cfd1306d7314a5a6290f027a31;p=redmine.git cleanup: rubocop: fix Layout/SpaceInsideBlockBraces in test/unit/watcher_test.rb git-svn-id: http://svn.redmine.org/redmine/trunk@19314 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/test/unit/watcher_test.rb b/test/unit/watcher_test.rb index 27b87aede..761bf5a71 100644 --- a/test/unit/watcher_test.rb +++ b/test/unit/watcher_test.rb @@ -42,7 +42,7 @@ class WatcherTest < ActiveSupport::TestCase def test_watch assert @issue.add_watcher(@user) @issue.reload - assert @issue.watchers.detect { |w| w.user == @user } + assert @issue.watchers.detect {|w| w.user == @user} end def test_cant_watch_twice