Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ void getValue_Success() {

@Test
@DisplayName("getValue 실패 - 값이 없는 경우")
void getValue_ReturnEmptyString() {
void getValue_ReturnNull() {
// given
String key = "testKey";
given(redisTemplate.opsForValue()).willReturn(valueOperations);
Expand All @@ -91,7 +91,7 @@ void getValue_ReturnEmptyString() {
String result = redisKeyValueMap.getValue(key);

// then
assertThat(result).isEmpty();
assertThat(result).isNull();
}

@Test
Expand Down