Skip to content

Commit 5c0dc93

Browse files
fix: describe Vector accurately and pin the catalog-entry test to Orbit
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Di4MfjnBCVf8N4v8WXq5nk
1 parent 51ebf76 commit 5c0dc93

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

bots/python/Vector/Vector.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "Vector",
33
"version": "1.0.0",
44
"authors": ["Tank Royale Rumble maintainers"],
5-
"description": "A small source-only bot that circles the arena while tracking opponents.",
5+
"description": "A small source-only bot that drives in wide arcs across the arena.",
66
"platform": "Python",
77
"programmingLang": "Python 3",
88
"gameTypes": ["1v1", "melee", "twinduel"],

tests/test_validate_bot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ def test_valid_submission_generates_an_active_catalog_entry(self) -> None:
7373
result = self.run_validator("--smoke", "--generate")
7474
self.assertEqual(0, result.returncode, result.stderr)
7575
catalog = json.loads((self.root / "bots" / "index.json").read_text(encoding="utf-8"))
76-
active_entry = next(entry for entry in catalog["bots"] if entry["status"] == "active")
77-
self.assertEqual("Orbit", active_entry["name"])
76+
orbit = next(entry for entry in catalog["bots"] if entry["name"] == "Orbit")
77+
self.assertEqual("active", orbit["status"])
7878

7979
def test_invalid_license_is_rejected(self) -> None:
8080
config_path = self.root / "bots" / "python" / "Orbit" / "Orbit.json"

0 commit comments

Comments
 (0)