summaryrefslogtreecommitdiffstats
path: root/test/integration/api_test/users_test.rb
diff options
context:
space:
mode:
authorMarius Balteanu <marius.balteanu@zitec.com>2024-03-03 22:34:44 +0000
committerMarius Balteanu <marius.balteanu@zitec.com>2024-03-03 22:34:44 +0000
commitc7fb4dbad4e2683afd6b92ddfd36d814944c92b4 (patch)
treec4ffd7cdfb949f73cdcc13d1cbdca950fb13c135 /test/integration/api_test/users_test.rb
parentfcd089a3b4dc5fda587df23b0c42d639b830ceea (diff)
downloadredmine-c7fb4dbad4e2683afd6b92ddfd36d814944c92b4.tar.gz
redmine-c7fb4dbad4e2683afd6b92ddfd36d814944c92b4.zip
Fix rubocop warnings on 5.1-stable branch.
git-svn-id: https://svn.redmine.org/redmine/branches/5.1-stable@22762 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/integration/api_test/users_test.rb')
-rw-r--r--test/integration/api_test/users_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/api_test/users_test.rb b/test/integration/api_test/users_test.rb
index 5f5c65ff0..995dc689f 100644
--- a/test/integration/api_test/users_test.rb
+++ b/test/integration/api_test/users_test.rb
@@ -139,7 +139,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