diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-11-26 06:30:11 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-11-26 06:30:11 +0000 |
commit | 3c7037f2b40964cfd1306d7314a5a6290f027a31 (patch) | |
tree | 7e014ca2d54738898b19edbb921f64e6f2f35b17 | |
parent | 1cca05ecf3aa0b068fd0ef1ec02dd92fb110214a (diff) | |
download | redmine-3c7037f2b40964cfd1306d7314a5a6290f027a31.tar.gz redmine-3c7037f2b40964cfd1306d7314a5a6290f027a31.zip |
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
-rw-r--r-- | test/unit/watcher_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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 |