17829: Fix test
authorPeter Amstutz <peter.amstutz@curii.com>
Thu, 24 Jun 2021 17:17:06 +0000 (13:17 -0400)
committerPeter Amstutz <peter.amstutz@curii.com>
Thu, 24 Jun 2021 17:17:06 +0000 (13:17 -0400)
Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>

apps/workbench/test/integration/logins_test.rb

index f079fbb8f1ce39eb4d88e33f232c3f8796dce89c..3c6ab7c7436e1ddb06621a01136ba85673ec78f2 100644 (file)
@@ -17,10 +17,7 @@ class LoginsTest < ActionDispatch::IntegrationTest
 
   test "trying to use expired token redirects to login page" do
     visit page_with_token('expired_trustedclient')
-    buttons = all("a.btn", text: /Log in/)
+    buttons = all("button.btn", text: /Log in/)
     assert_equal(1, buttons.size, "Failed to find one login button")
-    login_link = buttons.first[:href]
-    assert_match(%r{//[^/]+/login}, login_link)
-    assert_no_match(/\bapi_token=/, login_link)
   end
 end