1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-31 11:37:14 +00:00

Fix RuboCop offense Layout/SpaceAfterComma (#40099).

git-svn-id: https://svn.redmine.org/redmine/trunk@22647 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2024-01-27 01:47:10 +00:00
parent 7c1d3b6740
commit 4b1b6ce1db

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