Fix mysql migrations and db tests.

Этот коммит содержится в:
Conor Macpherson
2022-12-23 11:08:41 -05:00
родитель 13281a9b79
Коммит 6daa39fd62
4 изменённых файлов: 100 добавлений и 4 удалений

14
store/sqlstore/true_up_review_store_test.go Обычный файл
Просмотреть файл

@@ -0,0 +1,14 @@
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
package sqlstore
import (
"testing"
"github.com/mattermost/mattermost-server/v6/store/storetest"
)
func TestTrueUpReviewStore(t *testing.T) {
StoreTestWithSqlStore(t, storetest.TestTrueUpReviewStatusStore)
}