Skip to content

Commit

Permalink
test: 아티클 목록 조회 API URI 일부 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hun-ca committed Jul 24, 2024
1 parent 7f3ce10 commit f7e8694
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,12 +137,12 @@ class ArticleControllerTest : ControllerTestSpec() {
}

@Test
@DisplayName("[GET] /api/v1/articles?prevArticleId={prevArticleId}}")
@DisplayName("[GET] /api/v1/articles?prevArticleId={prevArticleId}")
fun readArticles() {
// given
val api = "ReadArticles"
val uri = UriComponentsBuilder.newInstance()
.path("$BASE_URL}")
.path("$BASE_URL")
.queryParam("prevArticleId", 1L)
.build()
.toUriString()
Expand Down

0 comments on commit f7e8694

Please sign in to comment.