Skip to content

Commit

Permalink
fix(subscription): incorrect param when calling query subscriptions i…
Browse files Browse the repository at this point in the history
…n a test
  • Loading branch information
bobeal committed Dec 28, 2023
1 parent 180921e commit f54f1c1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ class SubscriptionHandlerTests {
coEvery { subscriptionService.getSubscriptions(any(), any(), any()) } returns listOf(subscription)

webClient.get()
.uri("/ngsi-ld/v1/subscriptions?${subscription.id}&limit=0&offset=1&count=true")
.uri("/ngsi-ld/v1/subscriptions?limit=0&offset=1&count=true")
.exchange()
.expectStatus().isOk
.expectHeader().valueEquals(RESULTS_COUNT_HEADER, "3")
Expand Down

0 comments on commit f54f1c1

Please sign in to comment.