修复 Codex 资源引用测试 fixture

将 manifest 资源 kind 字符串 fixture 迁移为 Character 枚举。
This commit is contained in:
2026-09-15 19:41:41 +08:00
parent c2da8e184e
commit 30edfee00e
@@ -305,7 +305,7 @@ mod tests {
let mut manifest = new_game_creation_app_manifest("project-1", "测试项目");
manifest.assets.push(GameCreationAppAssetManifestEntry {
id: "asset-hero".to_string(),
kind: "character".to_string(),
kind: GameCreationAppAssetKind::Character,
media_type: "image/png".to_string(),
local_path: "assets/hero.png".to_string(),
source: GameCreationAppAssetSource {