Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
codabrink committed Jan 6, 2025
1 parent c13f740 commit c1c47e3
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions pkg/mls/api/v1/service_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -383,10 +383,11 @@ func TestSubscribeGroupMessages_WithCursor(t *testing.T) {
msgs[i] = &mlsv1.GroupMessage{
Version: &mlsv1.GroupMessage_V1_{
V1: &mlsv1.GroupMessage_V1{
Id: uint64(i + 4),
CreatedNs: uint64(i + 4),
GroupId: groupId,
Data: []byte(fmt.Sprintf("data%d", i+4)),
Id: uint64(i + 4),
CreatedNs: uint64(i + 4),
GroupId: groupId,
Data: []byte(fmt.Sprintf("data%d", i+4)),
SenderHmac: []byte(fmt.Sprintf("data%d", i+5)),
},
},
}
Expand All @@ -399,6 +400,7 @@ func TestSubscribeGroupMessages_WithCursor(t *testing.T) {
V1: &mlsv1.GroupMessage_V1{
Id: 3,
Data: []byte("data3"),
SenderHmac: []byte("data4"),
},
},
}).Matches)).Return(nil).Times(1)
Expand Down

0 comments on commit c1c47e3

Please sign in to comment.