diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-11-26 06:30:21 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-11-26 06:30:21 +0000 |
commit | e7927c9050fbf1c9b0ac43412fe4db03540196bf (patch) | |
tree | 4fb305ca0194a25a0eb59c66fc62be3c25faccd5 /test | |
parent | 3c7037f2b40964cfd1306d7314a5a6290f027a31 (diff) | |
download | redmine-e7927c9050fbf1c9b0ac43412fe4db03540196bf.tar.gz redmine-e7927c9050fbf1c9b0ac43412fe4db03540196bf.zip |
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
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/token_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/token_test.rb b/test/unit/token_test.rb index 413124dba..f349a085b 100644 --- a/test/unit/token_test.rb +++ b/test/unit/token_test.rb @@ -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 |