]> git.openstreetmap.org Git - rails.git/blobdiff - test/integration/client_applications_test.rb
Merge remote-tracking branch 'upstream/pull/4747'
[rails.git] / test / integration / client_applications_test.rb
index 0ac15759e0c0ec890849f1a19d2776ababedae84..e7e5b75759b2ab58b743f3562159196306d0ee90 100644 (file)
@@ -8,7 +8,6 @@ class ClientApplicationsTest < ActionDispatch::IntegrationTest
     user = create(:user)
 
     get "/login"
-    assert_response :redirect
     assert_redirected_to login_path(:cookie_test => "true")
     follow_redirect!
     assert_response :success
@@ -65,7 +64,7 @@ class ClientApplicationsTest < ActionDispatch::IntegrationTest
     get "/user/#{ERB::Util.u(user.display_name)}/oauth_clients"
     assert_response :success
     assert_template "oauth_clients/index"
-    assert_in_body { assert_select "div>a", "My New App" }
+    assert_in_body { assert_select "li>a", "My New App" }
   end
 
   ##