From 395aacf53e9edc8872636e2e1a57f46918c6cf43 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Fri, 11 Apr 2025 08:37:41 -0400 Subject: [PATCH] Fix CharaMake test --- src/lobby/chara_make.rs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/lobby/chara_make.rs b/src/lobby/chara_make.rs index 7ba9106..7f672be 100644 --- a/src/lobby/chara_make.rs +++ b/src/lobby/chara_make.rs @@ -60,8 +60,11 @@ mod tests { let chara_make = CharaMake::from_json(json); assert_eq!(chara_make.customize.gender, 0); - assert_eq!(chara_make.unk1, 1); - - // TODO: add more asserts + assert_eq!(chara_make.voice_id, 1); + assert_eq!(chara_make.guardian, 1); + assert_eq!(chara_make.birth_month, 1); + assert_eq!(chara_make.birth_day, 1); + assert_eq!(chara_make.classjob_id, 1); + assert_eq!(chara_make.unk2, 1); } }