MM-46911: P1 - Fix MySQL query to filter bots out of TopDM (#20965)

Automatic Merge
Этот коммит содержится в:
Shivashis Padhi
2022-09-09 21:04:00 +05:30
коммит произвёл GitHub
родитель 78251a3ff1
Коммит 8b328386c5
3 изменённых файлов: 36 добавлений и 12 удалений

Просмотреть файл

@@ -897,7 +897,6 @@ func TestGetTopInactiveChannelsForTeamSince(t *testing.T) {
}
func TestGetTopDMsForUserSince(t *testing.T) {
t.Skip("MM-46911")
th := Setup(t).InitBasic()
defer th.TearDown()
@@ -933,6 +932,7 @@ func TestGetTopDMsForUserSince(t *testing.T) {
Username: GenerateTestUsername(),
DisplayName: "a bot",
Description: "bot",
UserId: model.NewId(),
}
createdBot, resp, err := th.Client.CreateBot(bot)