test: lower category count floor to 69 to match current README

Several sections were removed in recent cleanup commits, so the previous
floor of 76 was no longer accurate.

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Vinta Chen 2026-03-22 01:32:32 +08:00
parent 32acf942d9
commit 81074548b5
No known key found for this signature in database
GPG Key ID: B93DE4F003C33630

View File

@ -532,8 +532,8 @@ class TestParseRealReadme:
def test_first_group_is_ai_ml(self):
assert self.groups[0]["name"] == "AI & ML"
def test_at_least_76_categories(self):
assert len(self.cats) >= 76
def test_at_least_69_categories(self):
assert len(self.cats) >= 69
def test_resources_has_newsletters_and_podcasts(self):
names = [r["name"] for r in self.resources]