From 7c720db644e43b2ac534816ceff0a8aa46670497 Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Fri, 3 Apr 2026 21:35:49 -0700 Subject: [PATCH] fix(tests): update saved_searches tier test to match intentional ungating --- tests/test_tiers.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/test_tiers.py b/tests/test_tiers.py index bf8d3cf..11dc250 100644 --- a/tests/test_tiers.py +++ b/tests/test_tiers.py @@ -18,6 +18,7 @@ def test_byok_does_not_unlock_photo_analysis(): assert can_use("photo_analysis", tier="free", has_byok=True) is False -def test_saved_searches_require_paid(): - assert can_use("saved_searches", tier="free") is False +def test_saved_searches_are_free(): + # Ungated: retention feature — friction cost outweighs gate value (see tiers.py) + assert can_use("saved_searches", tier="free") is True assert can_use("saved_searches", tier="paid") is True