From 4b066812256df16ff4ab9a681e3c6565f4c002e1 Mon Sep 17 00:00:00 2001 From: Kegan Dougal Date: Wed, 11 May 2022 12:46:41 +0100 Subject: [PATCH] Uncomment all database test --- syncapi/syncapi_test.go | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/syncapi/syncapi_test.go b/syncapi/syncapi_test.go index 7d1bbf344..7809cdaba 100644 --- a/syncapi/syncapi_test.go +++ b/syncapi/syncapi_test.go @@ -167,12 +167,9 @@ func testSyncAccessTokens(t *testing.T, dbType test.DBType) { // Tests what happens when we create a room and then /sync before all events from /createRoom have // been sent to the syncapi func TestSyncAPICreateRoomSyncEarly(t *testing.T) { - testSyncAPICreateRoomSyncEarly(t, test.DBTypePostgres) - /* - test.WithAllDatabases(t, func(t *testing.T, dbType test.DBType) { - testSyncAPICreateRoomSyncEarly(t, dbType) - }) - */ + test.WithAllDatabases(t, func(t *testing.T, dbType test.DBType) { + testSyncAPICreateRoomSyncEarly(t, dbType) + }) } func testSyncAPICreateRoomSyncEarly(t *testing.T, dbType test.DBType) {