1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-02-03 23:53:23 +00:00

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
This commit is contained in:
Toshi MARUYAMA 2019-11-26 06:30:11 +00:00
parent 1cca05ecf3
commit 3c7037f2b4

View File

@ -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