@ -747,7 +747,7 @@ func createFolder(t *testing.T, sc scenarioContext, title string) *folder.Folder
dashboardStore , err := database . ProvideDashboardStore ( sc . sqlStore , cfg , featuremgmt . WithFeatures ( ) , tagimpl . ProvideService ( sc . sqlStore , cfg ) , quotaService )
require . NoError ( t , err )
folderStore := folderimpl . ProvideDashboardFolderStore ( sc . sqlStore )
s := folderimpl . ProvideService ( ac , bus . ProvideBus ( tracing . InitializeTracerForTest ( ) ) , cfg , dashboardStore , folderStore , nil , features )
s := folderimpl . ProvideService ( ac , bus . ProvideBus ( tracing . InitializeTracerForTest ( ) ) , cfg , dashboardStore , folderStore , sc . sqlStore , features )
t . Logf ( "Creating folder with title and UID %q" , title )
ctx := appcontext . WithUser ( context . Background ( ) , sc . user )
@ -828,7 +828,7 @@ func testScenario(t *testing.T, desc string, fn func(t *testing.T, sc scenarioCo
dashboardStore , err := database . ProvideDashboardStore ( sqlStore , cfg , featuremgmt . WithFeatures ( ) , tagimpl . ProvideService ( sqlStore , sqlStore . Cfg ) , quotaService )
require . NoError ( t , err )
features := featuremgmt . WithFeatures ( )
folderService := folderimpl . ProvideService ( ac , bus . ProvideBus ( tracing . InitializeTracerForTest ( ) ) , cfg , dashboardStore , folderStore , nil , features )
folderService := folderimpl . ProvideService ( ac , bus . ProvideBus ( tracing . InitializeTracerForTest ( ) ) , cfg , dashboardStore , folderStore , sqlStore , features )
elementService := libraryelements . ProvideService ( cfg , sqlStore , routing . NewRouteRegister ( ) , folderService , featuremgmt . WithFeatures ( ) )
service := LibraryPanelService {