Skip to content

Commit

Permalink
get all the tests passing
Browse files Browse the repository at this point in the history
  • Loading branch information
nplasterer committed Sep 26, 2024
1 parent 9bae265 commit f537f97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/XMTPTests/GroupTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ class GroupTests: XCTestCase {

try await group.sync()
let members = try await group.members.map(\.inboxId).sorted()
let peerMembers = try Conversation.group(group).peerAddresses.sorted()
let peerMembers = try await group.peerInboxIds.sorted()

XCTAssertEqual([fixtures.bobClient.inboxID, fixtures.aliceClient.inboxID].sorted(), members)
XCTAssertEqual([fixtures.bobClient.inboxID].sorted(), peerMembers)
Expand Down

0 comments on commit f537f97

Please sign in to comment.