From d5fc45ff907e618d884a8d2d91c1f2b45e6898d1 Mon Sep 17 00:00:00 2001 From: Christophe Besson Date: Sun, 30 Aug 2026 17:05:15 +0200 Subject: chore: scrub copyrighted names from tests, comments and docs Real franchise / show / release-group names had crept back into test fixtures, code comments, a docstring and docs/mediacenter.md while fixing the saga-match and misclassification bugs. Replace them all with invented placeholders ("Some Saga", "A Different Show") and shape descriptions ("a franchise-origin film", "a 3-season show"). Behaviour and assertions unchanged; 738 node tests still pass. Record the rule in CLAUDE.md so it stops recurring. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_018BMLQjqFGCize2KtNBT79v --- packages/meshbay-node/tests/test_media_meta_request.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'packages/meshbay-node/tests/test_media_meta_request.py') diff --git a/packages/meshbay-node/tests/test_media_meta_request.py b/packages/meshbay-node/tests/test_media_meta_request.py index 0a3df12..9a1c5aa 100644 --- a/packages/meshbay-node/tests/test_media_meta_request.py +++ b/packages/meshbay-node/tests/test_media_meta_request.py @@ -93,7 +93,7 @@ async def test_two_episodes_in_the_same_season_folder_each_get_their_own_metadat season folder, and each must resolve against its own entry — not whichever one the index happens to return first for that folder.""" index = GroupIndex(group_id="g" * 32, sk_node=Ed25519PrivateKey.generate()) - ep1 = _entry("shows/Show/Season 1", "s01e01.mkv", "id-1", "War of the Worlds") + ep1 = _entry("shows/Show/Season 1", "s01e01.mkv", "id-1", "Some Show") ep2 = _entry("shows/Show/Season 1", "s01e02.mkv", "id-2", "A Different Show") index.add_entry(ep1) index.add_entry(ep2) @@ -105,7 +105,7 @@ async def test_two_episodes_in_the_same_season_folder_each_get_their_own_metadat resp_1, resp_2 = session.sent assert resp_1["file_id"] == "id-1" - assert resp_1["title"] == "War of the Worlds" + assert resp_1["title"] == "Some Show" assert resp_2["file_id"] == "id-2" assert resp_2["title"] == "A Different Show" assert resp_1["tmdb_id"] != resp_2["tmdb_id"], ( -- cgit v1.2.3