From f1c8ae2f5fa76b9cf242f34a5083126e1a10529d Mon Sep 17 00:00:00 2001 From: Jose Farias Date: Fri, 15 Nov 2024 18:21:39 -0600 Subject: [PATCH] No need to pluck title Was a debugging artifact --- test/models/bubble_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/models/bubble_test.rb b/test/models/bubble_test.rb index 62b958414..75756ede6 100644 --- a/test/models/bubble_test.rb +++ b/test/models/bubble_test.rb @@ -36,7 +36,7 @@ class BubbleTest < ActiveSupport::TestCase test "ordering by activity" do bubbles(:layout).tap { |b| b.update!(boost_count: 1_000) }.rescore - assert_equal bubbles(:layout, :logo, :shipping, :text).pluck(:title), Bubble.ordered_by_activity.pluck(:title) + assert_equal bubbles(:layout, :logo, :shipping, :text), Bubble.ordered_by_activity end test "ordering by comments" do