Skip to content

Commit

Permalink
refactor: exam description varchar to text
Browse files Browse the repository at this point in the history
  • Loading branch information
alstn113 committed Dec 22, 2024
1 parent b087afd commit e1ef8a3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE EXAM ALTER COLUMN description TYPE TEXT;
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,12 @@
import com.fluffy.integration.AbstractIntegrationTest;
import com.fluffy.support.data.MemberTestData;
import java.util.List;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;

@Disabled("동시성 문제 해결 방법 미정으로 테스트 비활성화합니다.")
class ExamServiceIntegrationTest extends AbstractIntegrationTest {

@Autowired
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;

@Disabled("동시성 문제 해결 방법 미정으로 테스트 비활성화합니다.")
class SubmissionServiceIntegrationTest extends AbstractIntegrationTest {

@Autowired
Expand All @@ -39,7 +40,6 @@ class SubmissionServiceIntegrationTest extends AbstractIntegrationTest {
private SubmissionRepository submissionRepository;

@Test
@Disabled("동시성 문제 해결 방법 미정으로 테스트 비활성화합니다.")
@DisplayName("시험을 제출할 수 있다.")
void submit() throws InterruptedException {
// given
Expand Down

0 comments on commit e1ef8a3

Please sign in to comment.