From 230a13b1e2104842cac884120f0d4d0517e5b173 Mon Sep 17 00:00:00 2001 From: Jose Farias Date: Thu, 12 Dec 2024 19:34:30 -0600 Subject: [PATCH] Unnecessary parens --- test/controllers/bubbles_controller_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/controllers/bubbles_controller_test.rb b/test/controllers/bubbles_controller_test.rb index 02f5924ca..6cc00f10d 100644 --- a/test/controllers/bubbles_controller_test.rb +++ b/test/controllers/bubbles_controller_test.rb @@ -55,7 +55,7 @@ class BubblesControllerTest < ActionDispatch::IntegrationTest assert_response :success buckets(:writebook).update! all_access: false - buckets(:writebook).accesses.revoke_from(users(:kevin)) + buckets(:writebook).accesses.revoke_from users(:kevin) get bucket_bubble_url(buckets(:writebook), bubbles(:logo)) assert_response :not_found end