Try to forget the room twice

This commit is contained in:
Till Faelligen 2023-03-28 14:28:59 +02:00
parent 780ba021d5
commit 9f8352b364
No known key found for this signature in database
GPG key ID: 3DF82D8AB9211D4E

View file

@ -257,6 +257,12 @@ func TestMembership(t *testing.T) {
wantOK: true, wantOK: true,
asUser: bob, asUser: bob,
}, },
{
name: "Bob can forget the room again",
request: httptest.NewRequest(http.MethodPost, fmt.Sprintf("/_matrix/client/v3/rooms/%s/%s", room.ID, "forget"), strings.NewReader("")),
wantOK: true,
asUser: bob,
},
// END must run in sequence // END must run in sequence
} }