Skip to content

Commit

Permalink
타입 체크 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
dojinyou committed Oct 15, 2023
1 parent 99580ec commit 402af12
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class CategoryQueryServiceDataTest : AbstractDataTest() {
val domain = categoryQueryService.findById(saved.id)

// then
assertThat(domain!!.id).isEqualTo(saved.id)
assertThat(domain.id).isEqualTo(saved.id)
}

@DisplayName("카테고리가 없으면 요소가 없는 카테고리들을 반환한다")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class StoreQueryServiceDataTest : AbstractDataTest() {
val dto = storeQueryService.findById(storeId = store.id)

// then
assertThat(dto!!.id).isEqualTo(store.id)
assertThat(dto.id).isEqualTo(store.id)
}

@DisplayName("id값이 없다면 최신 데이터를 조회한다")
Expand Down

0 comments on commit 402af12

Please sign in to comment.