Fix tests for x86 (#3214)

This commit is contained in:
Till 2023-09-28 14:50:31 +02:00 committed by GitHub
parent 1853f58cb4
commit 3d02c81031
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 7 additions and 7 deletions

View file

@ -58,7 +58,7 @@ type mockDB struct {
roomID string
}
func (s *mockDB) SelectMembershipForUser(ctx context.Context, roomID string, userID string, pos int64) (string, int, error) {
func (s *mockDB) SelectMembershipForUser(ctx context.Context, roomID string, userID string, pos int64) (string, int64, error) {
if roomID == s.roomID {
membership, ok := s.currentMembership[userID]
if !ok {