Skip to content

Commit

Permalink
fix: push integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ttypic committed Sep 28, 2023
1 parent 188541d commit d4a9c09
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/src/test/java/io/ably/lib/test/rest/RestPushTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@ public void setUpBefore() throws Exception {
.add("push", JsonUtils.object()
.add("recipient", JsonUtils.object()
.add("transportType", "apns")
.add("deviceToken", "foo")))
.add("deviceToken", "foo")
.add("apnsDeviceTokens", JsonUtils.object().add("default", "foo"))))
.toJson());

deviceDetails1ClientA = DeviceDetails.fromJsonObject(JsonUtils.object()
Expand Down

0 comments on commit d4a9c09

Please sign in to comment.