From fea4142c9eded3892cf8ab462e7767c66439d7a5 Mon Sep 17 00:00:00 2001 From: shenjack <3695888@qq.com> Date: Thu, 9 May 2024 00:04:31 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AE=80=E9=99=8B=E7=9A=84=E6=A3=80=E6=9F=A5?= =?UTF-8?q?=E8=BF=98=E6=98=AF=E6=9C=89=E5=BF=85=E8=A6=81=E7=9A=84=EF=BC=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- branch/latest/test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/branch/latest/test.ts b/branch/latest/test.ts index 41646b3..12a5d52 100644 --- a/branch/latest/test.ts +++ b/branch/latest/test.ts @@ -92,7 +92,7 @@ async function win_rate(names: string, round: number): Promise { throw new Error("round 必须大于 0"); } if (!test_check(names)) { - throw new Error("你怎么在胜率输入里加 !test!(恼)\n${names}"); + throw new Error("你怎么在胜率输入里丢了 !test!(恼)\n${names}"); } return await md5_module.win_rate(names, round); } @@ -108,7 +108,7 @@ async function win_rate_callback( callback: WinRateCallback, ): Promise { if (!test_check(names)) { - throw new Error("你怎么在胜率输入里加 !test!(恼)\n${names}"); + throw new Error("你怎么在胜率输入里丢了 !test!(恼)\n${names}"); } return await md5_module.win_rate_callback(names, callback); } @@ -119,7 +119,7 @@ async function score(names: string, round: number): Promise { throw new Error("round 必须大于 0"); } if (!test_check(names)) { - throw new Error("你怎么在分数输入里加 !test!(恼)\n${names}"); + throw new Error("你怎么在分数输入里丢了 !test!(恼)\n${names}"); } return await md5_module.score(names, round); }