diff options
| author | ketsuban <ketsuban@192.168.3.110> | 2026-08-26 10:52:31 +0000 |
|---|---|---|
| committer | ketsuban <ketsuban@192.168.3.110> | 2026-08-26 10:52:31 +0000 |
| commit | 84e75a6dda6ee052b8ae937779631310043fd87d (patch) | |
| tree | f3d5d4aae0253433d65476e452d4b883f7213b92 /modules | |
| parent | 87eb20afcb7c38a67238c2ad1574c2b391cbc577 (diff) | |
| download | kukuri-84e75a6dda6ee052b8ae937779631310043fd87d.tar.gz kukuri-84e75a6dda6ee052b8ae937779631310043fd87d.tar.bz2 kukuri-84e75a6dda6ee052b8ae937779631310043fd87d.zip | |
Fix judge test values above thresholds
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/orgflow-domain/src/commonTest/kotlin/kukuri/FourthDivisionTest.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/orgflow-domain/src/commonTest/kotlin/kukuri/FourthDivisionTest.kt b/modules/orgflow-domain/src/commonTest/kotlin/kukuri/FourthDivisionTest.kt index 0d51f4f..588bd06 100644 --- a/modules/orgflow-domain/src/commonTest/kotlin/kukuri/FourthDivisionTest.kt +++ b/modules/orgflow-domain/src/commonTest/kotlin/kukuri/FourthDivisionTest.kt @@ -28,7 +28,7 @@ class FourthDivisionTest { @Test fun judgeModeDeterministicScoring() { val scenario = JudgeScenario("demo", mapOf("timeToUsable" to 100.0, "completion" to 0.9)) - assertTrue(JudgeMode.evaluate(scenario, mapOf("timeToUsable" to 90.0, "completion" to 0.95)).passed) + assertTrue(JudgeMode.evaluate(scenario, mapOf("timeToUsable" to 150.0, "completion" to 0.95)).passed) val ok = JudgeMode.evaluate(scenario, mapOf("timeToUsable" to 200.0, "completion" to 0.99)) assertTrue(ok.passed) val bad = JudgeMode.evaluate(scenario, mapOf("timeToUsable" to 50.0, "completion" to 0.99)) |
