From ee41162b4891d28682717bcafaa820783c973b6a Mon Sep 17 00:00:00 2001 From: Agniva De Sarker Date: Wed, 3 Aug 2022 04:42:40 +0530 Subject: [PATCH] MM-46134: Skip flaky test PostStore//GetForThread (#20755) https://mattermost.atlassian.net/browse/MM-46134 ```release-note NONE ``` --- store/storetest/post_store.go | 1 + 1 file changed, 1 insertion(+) diff --git a/store/storetest/post_store.go b/store/storetest/post_store.go index 63965897a4..da7c16137c 100644 --- a/store/storetest/post_store.go +++ b/store/storetest/post_store.go @@ -568,6 +568,7 @@ func testPostStoreGetForThread(t *testing.T, ss store.Store) { }) t.Run("Pagination", func(t *testing.T) { + t.Skip("MM-46134") o1, err := ss.Post().Save(&model.Post{ChannelId: model.NewId(), UserId: model.NewId(), Message: NewTestId()}) require.NoError(t, err) _, err = ss.Post().Save(&model.Post{ChannelId: o1.ChannelId, UserId: model.NewId(), Message: NewTestId(), RootId: o1.Id})