diff --git a/spec/components/product_component_spec.rb b/spec/components/product_component_spec.rb index 5b5de68af6..df6c73b0d3 100644 --- a/spec/components/product_component_spec.rb +++ b/spec/components/product_component_spec.rb @@ -19,24 +19,6 @@ describe ProductComponent, type: :component do end end - describe 'category' do - let(:product) do - product = create(:simple_product) - product.taxons = taxons - - product - end - let(:taxons) { [create(:taxon, name: 'random 1'), create(:taxon, name: 'random 2')] } - - before do - render_inline( - ProductComponent.new( - product: product, columns: [{ label: "Category", value: "category", sortable: false }] - ) - ) - end - end - describe 'on_hand' do let(:product) { create(:simple_product, on_hand: on_hand) } let(:on_hand) { 5 }