]> git.openstreetmap.org Git - rails.git/blobdiff - test/helpers/user_helper_test.rb
Merge pull request #4133 from AntonKhorev/flex-leaflet-controls
[rails.git] / test / helpers / user_helper_test.rb
index f64cee31915b159614ba3380d993eb742959630e..044f71681f2ec9ef2432bcc98c25dd00ecb3acfc 100644 (file)
@@ -111,12 +111,12 @@ class UserHelperTest < ActionView::TestCase
 
   def test_openid_logo
     logo = openid_logo
-    assert_match %r{^<img .* class="openid_logo" src="/images/openid_small.png" />$}, logo
+    assert_match %r{^<img .* src="/images/openid_small.png" />$}, logo
   end
 
   def test_auth_button
     button = auth_button("google", "google")
-    assert_equal("<a class=\"auth_button\" title=\"Login with Google\" rel=\"nofollow\" data-method=\"post\" href=\"/auth/google\"><img alt=\"Login with a Google OpenID\" class=\"rounded-lg\" src=\"/images/google.svg\" /></a>", button)
+    assert_equal("<a class=\"auth_button\" title=\"Login with Google\" rel=\"nofollow\" data-method=\"post\" href=\"/auth/google\"><img alt=\"Login with a Google OpenID\" class=\"rounded-3\" src=\"/images/google.svg\" /></a>", button)
   end
 
   private