From 1c61637c70b99eed73eb8c239c3133fba5ac3ac1 Mon Sep 17 00:00:00 2001 From: adorableco Date: Mon, 7 Oct 2024 14:37:51 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20increaseExamineeCount()=20=ED=85=8C?= =?UTF-8?q?=EC=8A=A4=ED=8A=B8=20=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/test/kotlin/com/swm_standard/phote/entity/ExamTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/kotlin/com/swm_standard/phote/entity/ExamTest.kt b/src/test/kotlin/com/swm_standard/phote/entity/ExamTest.kt index d3eaebd..9219049 100644 --- a/src/test/kotlin/com/swm_standard/phote/entity/ExamTest.kt +++ b/src/test/kotlin/com/swm_standard/phote/entity/ExamTest.kt @@ -117,8 +117,8 @@ class ExamTest { val sharedExam = fixtureMonkey .giveMeBuilder(SharedExam::class.java) - .setExp(SharedExam::startTime, LocalDateTime.now().plusDays(1)) .setExp(SharedExam::examineeCount, examineeCount) + .setExp(SharedExam::capacity, Arbitraries.integers().greaterOrEqual(examineeCount + 1)) .build() .sample()