MM-43341: Skip TestImportImportUser (#19970)

* MM-43341: Skip TestImportImportUser

https://mattermost.atlassian.net/browse/MM-43341

```release-note
NONE
```

* ignore lint

```release-note
NONE
```
Этот коммит содержится в:
Agniva De Sarker
2022-04-13 18:51:13 +05:30
коммит произвёл GitHub
родитель c0b2aae84e
Коммит 289bb9fa6f
2 изменённых файлов: 2 добавлений и 0 удалений

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

@@ -704,6 +704,7 @@ func TestImportImportChannel(t *testing.T) {
}
func TestImportImportUser(t *testing.T) {
t.Skip("MM-43341")
th := Setup(t)
defer th.TearDown()

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

@@ -52,6 +52,7 @@ func checkPreference(t *testing.T, a *App, userID string, category string, name
require.Truef(t, found, "Did not find preference for user %v in category %v with name %v", userID, category, name)
}
//nolint:unused
func checkNotifyProp(t *testing.T, user *model.User, key string, value string) {
actual, ok := user.NotifyProps[key]
require.True(t, ok, "Notify prop %v not found. User: %v", key, user.Id)