Skip to content

Commit

Permalink
test: 테스트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jemin committed Dec 13, 2023
1 parent 4d5523c commit 9aa23d5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package cmc.mellyserver.domain.memory;

import org.springframework.cache.annotation.CacheEvict;
import org.springframework.cache.annotation.Cacheable;
import org.springframework.context.ApplicationEventPublisher;
import org.springframework.data.domain.Pageable;
import org.springframework.stereotype.Service;
Expand Down Expand Up @@ -31,7 +32,7 @@ public class MemoryService {
/*
메모리 상세 정보 조회
*/
// @Cacheable(cacheNames = CacheNames.MEMORY, key = "#memoryId")
@Cacheable(cacheNames = CacheNames.MEMORY, key = "#memoryId")
public MemoryResponseDto getMemory(final Long memoryId) {
return memoryReader.getMemory(memoryId);
}
Expand Down

0 comments on commit 9aa23d5

Please sign in to comment.