1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-07 16:11:30 +00:00

cleanup: rubocop: fix Layout/SpaceInsideBlockBraces in test/unit/token_test.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@19315 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2019-11-26 06:30:21 +00:00
parent 3c7037f2b4
commit e7927c9050

View File

@ -48,7 +48,7 @@ class TokenTest < ActiveSupport::TestCase
["autologin", "session"].each do |action|
assert_difference 'Token.count', 10 do
10.times { Token.create!(:user => user, :action => action) }
10.times {Token.create!(:user => user, :action => action)}
end
assert_no_difference 'Token.count' do