diff options
| author | Christophe Besson <cbesson@gmail.com> | 2026-08-30 17:05:15 +0200 |
|---|---|---|
| committer | Christophe Besson <cbesson@gmail.com> | 2026-08-30 17:05:15 +0200 |
| commit | d5fc45ff907e618d884a8d2d91c1f2b45e6898d1 (patch) | |
| tree | b368ee90e99254e6d66f0a22324d9d25c5dd0a4a /packages/meshbay-node/tests/test_media_meta_request.py | |
| parent | b206dc86221d453c699074749f59f1d7cb3d47dc (diff) | |
| download | meshbay-d5fc45ff907e618d884a8d2d91c1f2b45e6898d1.tar.gz | |
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 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_018BMLQjqFGCize2KtNBT79v
Diffstat (limited to 'packages/meshbay-node/tests/test_media_meta_request.py')
| -rw-r--r-- | packages/meshbay-node/tests/test_media_meta_request.py | 4 |
1 files changed, 2 insertions, 2 deletions
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"], ( |