Skip to content

Commit

Permalink
エラーメッセージを変更
Browse files Browse the repository at this point in the history
  • Loading branch information
qryxip committed May 24, 2024
1 parent 9dbf9a4 commit 3bfac98
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions crates/voicevox_core/src/manifest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ impl<'de> Deserialize<'de> for FormatVersionV1 {
{
match v {
"1" => Ok(FormatVersionV1),
v => Err(E::custom(format!("未知の`vvm_format_version`です: `{v}`"))),
v => Err(E::custom(format!(
"`vvm_format_version={v}`とありますが、これは未知のフォーマットです。\
新しいバージョンのVOICEVOX COREであれば対応しているかもしれません"
))),
}
}
}
Expand Down Expand Up @@ -106,7 +109,10 @@ mod tests {
#[case("{\"vvm_format_version\":\"1\"}", Ok(()))]
#[case(
"{\"vvm_format_version\":\"2\"}",
Err("未知の`vvm_format_version`です: `2` at line 1 column 25")
Err(
"`vvm_format_version=2`とありますが、これは未知のフォーマットです。新しいバージョンの\
VOICEVOX COREであれば対応しているかもしれません at line 1 column 25"
)
)]
fn vvm_format_version_works(
#[case] input: &str,
Expand Down

0 comments on commit 3bfac98

Please sign in to comment.