From 34df819e30b4ee09d494a65296ae3b120eefd550 Mon Sep 17 00:00:00 2001 From: Jose Farias Date: Mon, 21 Oct 2024 15:50:15 -0600 Subject: [PATCH] Fix tag test --- app/controllers/tags_controller.rb | 1 - test/controllers/tags_controller_test.rb | 1 - 2 files changed, 2 deletions(-) diff --git a/app/controllers/tags_controller.rb b/app/controllers/tags_controller.rb index 14b0240e6..275ffce05 100644 --- a/app/controllers/tags_controller.rb +++ b/app/controllers/tags_controller.rb @@ -2,7 +2,6 @@ class TagsController < ApplicationController include BucketScoped before_action :set_bubble, only: %i[ new create ] - skip_before_action :set_bucket, only: :destroy def index @tags = Current.account.tags.order(:title) diff --git a/test/controllers/tags_controller_test.rb b/test/controllers/tags_controller_test.rb index 2ece908e5..909b806e2 100644 --- a/test/controllers/tags_controller_test.rb +++ b/test/controllers/tags_controller_test.rb @@ -22,4 +22,3 @@ class TagsControllerTest < ActionDispatch::IntegrationTest assert bubbles(:logo).tags.pluck(:title).include?("Horizons") end end -