Skip to content

Commit

Permalink
Merge pull request #366 from SWM-NM/feat/#359
Browse files Browse the repository at this point in the history
✏️ [FIX] 골드 랜덤 디펜스 문제 범위 수정
  • Loading branch information
aj4941 authored Sep 24, 2023
2 parents 7e936ab + 5345aa8 commit bdb5125
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -264,10 +264,10 @@ private void insertTestTypeData() {

// PK 13번 : 브론즈 랜덤 디펜스
List<DifficultyRange> difficultyRanges13 = new ArrayList<>();
difficultyRanges12.add(new DifficultyRange(DifficultyLevel.B4, DifficultyLevel.B3));
difficultyRanges12.add(new DifficultyRange(DifficultyLevel.B3, DifficultyLevel.B2));
difficultyRanges12.add(new DifficultyRange(DifficultyLevel.B2, DifficultyLevel.B1));
difficultyRanges12.add(new DifficultyRange(DifficultyLevel.B2, DifficultyLevel.B1));
difficultyRanges13.add(new DifficultyRange(DifficultyLevel.B4, DifficultyLevel.B3));
difficultyRanges13.add(new DifficultyRange(DifficultyLevel.B3, DifficultyLevel.B2));
difficultyRanges13.add(new DifficultyRange(DifficultyLevel.B2, DifficultyLevel.B1));
difficultyRanges13.add(new DifficultyRange(DifficultyLevel.B2, DifficultyLevel.B1));

TestType testType13 = TestType.builder()
.testTypename("브론즈 랜덤 디펜스")
Expand Down Expand Up @@ -315,7 +315,7 @@ private void insertTestTypeData() {
.problemCount(4)
.startDifficulty(DifficultyLevel.G5)
.endDifficulty(DifficultyLevel.G1)
.difficultyRanges(difficultyRanges13)
.difficultyRanges(difficultyRanges15)
.numberOfTestTrial(0)
.averageCorrectAnswerRate(0L)
.build();
Expand Down

0 comments on commit bdb5125

Please sign in to comment.