Need to fix index load issues

This commit is contained in:
gamer147
2026-05-23 14:50:16 -04:00
parent bf6ddf5428
commit 631e42289a
12 changed files with 351 additions and 119 deletions

View File

@@ -30,7 +30,7 @@ public class RoutingSmokeTests
}
private const string ValidBaseRequestJson =
"""{"viewerId":"0","steamId":0,"steamSessionTicket":""}""";
"""{"viewer_id":"0","steam_id":0,"steam_session_ticket":""}""";
[Test]
public async Task CheckSpecialTitle_resolves_to_CheckController()
@@ -48,7 +48,7 @@ public class RoutingSmokeTests
var body = await response.Content.ReadAsStringAsync();
// Plain-JSON path uses camelCase (System.Text.Json default); MessagePack [Key] only applies
// to the Unity-UA encrypted path through ShadowverseTranslationMiddleware.
Assert.That(body, Does.Contain("\"titleImageId\":\"0\""),
Assert.That(body, Does.Contain("\"title_image_id\":\"0\""),
"SpecialTitleCheck should return the built-in title id \"0\".");
}