Skip to content

Commit

Permalink
Changes after review.
Browse files Browse the repository at this point in the history
  • Loading branch information
marcin-cebo committed Jan 2, 2025
1 parent 64c88b9 commit 1504764
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,13 @@ class MembersTest : BaseIntegrationTest() {
val result = pubnub.setChannelMembers(
channel,
listOf(PNMember.Partial(pubnub.configuration.userId.value, custom, status, type)),
include = MemberInclude(includeCustom = includeCustom, includeUser = true, includeUserCustom = true, includeStatus = true, includeType = true),
include = MemberInclude(
includeCustom = includeCustom,
includeUser = true,
includeUserCustom = true,
includeStatus = true,
includeType = true
),
).await()

// then
Expand Down Expand Up @@ -84,7 +90,7 @@ class MembersTest : BaseIntegrationTest() {
assertEquals(type, pnChannelDetails.type?.value)
}

@Test
@Test
fun can_set_members_with_status_deprecated() = runTest(timeout = 10.seconds) {
if (PLATFORM == "JS") {
// TODO JS doesn't have membership status
Expand Down

0 comments on commit 1504764

Please sign in to comment.