From f4b2bec5ce954dad8eee432fe9eab86c0ca5df17 Mon Sep 17 00:00:00 2001 From: Jorge Manrubia Date: Fri, 11 Apr 2025 09:54:34 +0200 Subject: [PATCH] Fix test --- test/models/card/golden_test.rb | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/test/models/card/golden_test.rb b/test/models/card/golden_test.rb index b20b16e9f..2d26101d3 100644 --- a/test/models/card/golden_test.rb +++ b/test/models/card/golden_test.rb @@ -21,10 +21,7 @@ class Card::GoldenTest < ActiveSupport::TestCase end test "scopes" do - assert_includes Card.doing, cards(:logo) - assert_not_includes Card.doing, cards(:text) - - assert_includes Card.considering, cards(:text) - assert_not_includes Card.considering, cards(:logo) + assert_includes Card.golden, cards(:logo) + assert_not_includes Card.golden, cards(:text) end end