Skip to content

Commit

Permalink
Merge pull request #376 from miIlicon/development
Browse files Browse the repository at this point in the history
[#noissue] 테스트 로직 수정 배포
  • Loading branch information
angelSuho authored Oct 9, 2023
2 parents 82bb93c + f15286d commit 7120e59
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = 'com'
version = '1.6.0-SNAPSHOT'
version = '1.2.0-SNAPSHOT'
sourceCompatibility = '17'

configurations {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 1.6.0
version: 1.2.0

spring:
profiles:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -269,8 +269,8 @@ void getListGuide() throws Exception {
assertThat(guidePageRes.getGuideResList()).hasSize(10)
.extracting("content")
.containsExactlyInAnyOrder(
"content1", "content2", "content3", "content4", "content5",
"content6", "content7", "content8", "content9", "content10"
"content11", "content10", "content9", "content8", "content7",
"content6", "content5", "content4", "content3", "content2"
);
assertThat(guidePageRes).isNotNull()
.extracting("totalCount", "totalPage", "pageNumber", "pageSize")
Expand Down

0 comments on commit 7120e59

Please sign in to comment.