]> git.openstreetmap.org Git - rails.git/commitdiff
Merge branch 'pull/5020'
authorAnton Khorev <tony29@yandex.ru>
Sun, 28 Jul 2024 15:54:42 +0000 (18:54 +0300)
committerAnton Khorev <tony29@yandex.ru>
Sun, 28 Jul 2024 15:54:42 +0000 (18:54 +0300)
1  2 
test/controllers/api/changeset_comments_controller_test.rb

index d3b171588b71cd8d86a2b753624a7a8dff7c77e0,01d5ecb5d30363492a8a7fbd30c244c6610d063c..f479b24b3cb99b3b9f68921fd772086f69bd4103
@@@ -307,7 -307,7 +307,7 @@@ module Ap
        changeset = create(:changeset, :closed)
  
        assert_difference "ChangesetComment.count", 0 do
-         signed_post changeset_comment_path(changeset), :params => { :text => "This is a comment" }, :oauth => { :token => token }
 -        post changeset_comment_path(:id => changeset), :params => { :text => "This is a comment" }, :headers => bearer_authorization_header(token.token)
++        post changeset_comment_path(changeset), :params => { :text => "This is a comment" }, :headers => bearer_authorization_header(token.token)
        end
        assert_response :forbidden
  
        user.save!
  
        assert_difference "ChangesetComment.count", 1 do
-         signed_post changeset_comment_path(changeset), :params => { :text => "This is a comment" }, :oauth => { :token => token }
 -        post changeset_comment_path(:id => changeset), :params => { :text => "This is a comment" }, :headers => bearer_authorization_header(token.token)
++        post changeset_comment_path(changeset), :params => { :text => "This is a comment" }, :headers => bearer_authorization_header(token.token)
        end
        assert_response :success
      end