Browse Source

Fix RuboCop offense Layout/SpaceAfterComma (#40099).


git-svn-id: https://svn.redmine.org/redmine/trunk@22647 e93f8b46-1217-0410-a6f0-8f06a7374b81
pull/145/merge
Go MAEDA 3 months ago
parent
commit
4b1b6ce1db
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      test/integration/api_test/users_test.rb

+ 1
- 1
test/integration/api_test/users_test.rb View File

@@ -133,7 +133,7 @@ class Redmine::ApiTest::UsersTest < Redmine::ApiTest::Base
assert_response :success
json = ActiveSupport::JSON.decode(response.body)
assert json.key?('users')
users = User.where(status: [1,3])
users = User.where(status: [1, 3])
assert_equal users.size, json['users'].size
end


Loading…
Cancel
Save