From a92aab998126f8abc9ba7d12e2613d54578b238c Mon Sep 17 00:00:00 2001 From: vkagithala <“vkagithala@cirm.ca.gov”> Date: Thu, 4 Dec 2025 08:44:37 -0800 Subject: [PATCH] Removed test to verify back button. --- test/controllers/notifications_controller_test.rb | 8 -------- 1 file changed, 8 deletions(-) diff --git a/test/controllers/notifications_controller_test.rb b/test/controllers/notifications_controller_test.rb index cf69d3703..13c211783 100644 --- a/test/controllers/notifications_controller_test.rb +++ b/test/controllers/notifications_controller_test.rb @@ -1,12 +1,4 @@ require "test_helper" class NotificationsControllerTest < ActionDispatch::IntegrationTest - test "should get index and show back button" do - sign_in_as users(:david) - get notifications_url - assert_response :success - assert_select "a[href=?]", root_path do - assert_select "strong", text: "Back to Home" - end - end end