Make account data sytests pass

This commit is contained in:
Kegan Dougal 2020-06-17 16:36:51 +01:00
parent 8efeb8eb3b
commit f6fc39fbeb
2 changed files with 3 additions and 1 deletions

View file

@ -51,7 +51,7 @@ func GetAccountData(
); err == nil { ); err == nil {
return util.JSONResponse{ return util.JSONResponse{
Code: http.StatusOK, Code: http.StatusOK,
JSON: data, JSON: data.Content,
} }
} }

View file

@ -115,6 +115,8 @@ User can invite local user to room with version 1
Should reject keys claiming to belong to a different user Should reject keys claiming to belong to a different user
Can add account data Can add account data
Can add account data to room Can add account data to room
Can get account data without syncing
Can get room account data without syncing
#Latest account data appears in v2 /sync #Latest account data appears in v2 /sync
New account data appears in incremental v2 /sync New account data appears in incremental v2 /sync
Checking local federation server Checking local federation server