Skip to content

Commit

Permalink
fix(store): 네이버 로컬 API 조회 테스트 로직에 맞게 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
govl6113 committed Nov 6, 2023
1 parent 52229df commit d692c21
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spring:
ddl-auto: update
data:
redis:
host: ENC(Vu1yuZNRQp9ZpKbWf9/RPQ==)
host: ENC(k9JRvKt85GZzSZSHbXBXrA==)
port: 6379

management:
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/prography/cakeke/server/common/BaseMock.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class BaseMock {
protected final StoreType testStoreType = StoreType.CHARACTER;

protected final String testNaverStoreName = "끌레르 봉봉";
protected final String testNaverStoreAddress = "서울특별시 강남구 논현로114길 8 1층 103호 끌레르봉봉";
protected final String testNaverStoreLink = "http://pf.kakao.com/_busxnC";

protected Store buildStore(String storeName) {
return Store.builder()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public void getNaverLocalApiTestSuccess() {
StoreNaverLocalSearchApiResponse testStoreNaverLocalSearchApiResponse =
storeService.getNaverLocalApiByStore(testStore);

assertThat(testStoreNaverLocalSearchApiResponse.getAddress()).isEqualTo(testNaverStoreAddress);
assertThat(testStoreNaverLocalSearchApiResponse.getLink()).isEqualTo(testNaverStoreLink);
}

@Test
Expand Down

0 comments on commit d692c21

Please sign in to comment.