Chore: replace xorm by sqlx in dashboardversion service (#53869)
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package dashverimpl
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/grafana/grafana/pkg/services/sqlstore"
|
||||
)
|
||||
|
||||
func TestIntegrationSQLxGetDashboardVersion(t *testing.T) {
|
||||
testIntegrationGetDashboardVersion(t, func(ss *sqlstore.SQLStore) store {
|
||||
return &sqlxStore{
|
||||
sess: ss.GetSqlxSession(),
|
||||
}
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user