]> source.dussan.org Git - redmine.git/commitdiff
Fix passing a wrong parameter to assert_select in API test for 'GET /users/:id' ...
authorGo MAEDA <maeda@farend.jp>
Thu, 31 Dec 2020 00:44:39 +0000 (00:44 +0000)
committerGo MAEDA <maeda@farend.jp>
Thu, 31 Dec 2020 00:44:39 +0000 (00:44 +0000)
Patch by Go MAEDA.

git-svn-id: http://svn.redmine.org/redmine/trunk@20700 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/integration/api_test/users_test.rb

index d54701ad55096d9b4677d6182397461e01a41613..bd58a39f2c4bb1e6470c8041d363b41a9044d875 100644 (file)
@@ -158,7 +158,7 @@ class Redmine::ApiTest::UsersTest < Redmine::ApiTest::Base
   test "GET /users/:id should return status for administrators" do
     get '/users/2.xml', :headers => credentials('admin')
     assert_response :success
-    assert_select 'user status', :text => User.find(1).status.to_s
+    assert_select 'user status', :text => User.find(2).status.to_s
   end
 
   test "GET /users/:id should return admin status for current user" do