diff options
author | Till <2353100+S7evinK@users.noreply.github.com> | 2022-08-25 14:42:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-25 13:42:47 +0100 |
commit | 07dd9bd9954d0740664651bf9755a81c3ba2d011 (patch) | |
tree | 4a547a8c575767efd66c4e6c0b326ded2f151a4d /syncapi/syncapi_test.go | |
parent | 8ff3f1a7c9578a3a4f95755c4698da3219777097 (diff) |
SyncAPI tweaks/fixes (#2671)
- Reverts 9dc57122d991d54ea6750448ba88c8763a569830 as it was causing issues https://github.com/matrix-org/dendrite/issues/2660
- Updates the GMSL `DefaultStateFilter` to use a limit of 20 events
- Uses the timeline events to determine the new position instead of the state events
Diffstat (limited to 'syncapi/syncapi_test.go')
-rw-r--r-- | syncapi/syncapi_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/syncapi/syncapi_test.go b/syncapi/syncapi_test.go index 76d51c86..c81256aa 100644 --- a/syncapi/syncapi_test.go +++ b/syncapi/syncapi_test.go @@ -195,7 +195,7 @@ func TestSyncAPICreateRoomSyncEarly(t *testing.T) { } func testSyncAPICreateRoomSyncEarly(t *testing.T, dbType test.DBType) { - t.SkipNow() // Temporary? + t.Skip("Skipped, possibly fixed") user := test.NewUser(t) room := test.NewRoom(t, user) alice := userapi.Device{ |