diff --git a/server/channels/api4/post_test.go b/server/channels/api4/post_test.go index 3f1d4dcb6d..0603a55dc4 100644 --- a/server/channels/api4/post_test.go +++ b/server/channels/api4/post_test.go @@ -3129,14 +3129,13 @@ func TestWebHubMembership(t *testing.T) { } func TestWebHubCloseConnOnDBFail(t *testing.T) { - t.Skip("MM-61780") th := Setup(t).InitBasic() defer func() { th.TearDown() - // Asserting that the error message is present in the log - testlib.AssertLog(t, th.LogBuffer, mlog.LvlError.Name, "Error while registering to hub") _, err := th.Server.Store().GetInternalMasterDB().Exec(`ALTER TABLE dummy RENAME to ChannelMembers`) require.NoError(t, err) + // Asserting that the error message is present in the log + testlib.AssertLog(t, th.LogBuffer, mlog.LvlError.Name, "Error while registering to hub") }() cli := th.CreateClient()