mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* [MM-19948] Set version on module file and internal paths * Fixes after merge * Fix i18n checker error
15 lines
297 B
Go
15 lines
297 B
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
package sqlstore
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mattermost/mattermost-server/v5/store/storetest"
|
|
)
|
|
|
|
func TestStatusStore(t *testing.T) {
|
|
StoreTest(t, storetest.TestStatusStore)
|
|
}
|