Chore: Deprecate ID from Folder (#78281)

* Chore: Deprecate ID from Folder

* chore: add more linter comments

* chore: add missing lint comment
This commit is contained in:
Kat Yang
2023-11-20 15:44:51 -05:00
committed by GitHub
parent ae164df698
commit 2f2ce3edbb
34 changed files with 128 additions and 20 deletions
@@ -58,7 +58,7 @@ func TestImportDashboardService(t *testing.T) {
}
folderService := &foldertest.FakeService{
ExpectedFolder: &folder.Folder{
ID: 5,
ID: 5, // nolint:staticcheck
UID: "123",
},
}
@@ -122,7 +122,7 @@ func TestImportDashboardService(t *testing.T) {
libraryPanelService := &libraryPanelServiceMock{}
folderService := &foldertest.FakeService{
ExpectedFolder: &folder.Folder{
ID: 5,
ID: 5, // nolint:staticcheck
UID: "123",
},
}