fix(tests): update saved_searches tier test to match intentional ungating

This commit is contained in:
pyr0ball 2026-04-03 21:35:49 -07:00
parent e93e3de207
commit 7c720db644

View file

@ -18,6 +18,7 @@ def test_byok_does_not_unlock_photo_analysis():
assert can_use("photo_analysis", tier="free", has_byok=True) is False assert can_use("photo_analysis", tier="free", has_byok=True) is False
def test_saved_searches_require_paid(): def test_saved_searches_are_free():
assert can_use("saved_searches", tier="free") is False # 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 assert can_use("saved_searches", tier="paid") is True