librarypanels: Fix JSON field casing in tests (#29954)

Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
This commit is contained in:
Arve Knudsen 2020-12-22 14:52:43 +01:00 committed by GitHub
parent 24bc2b1cf4
commit be62dc4d2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -179,11 +179,11 @@ func TestGetAllLibraryPanels(t *testing.T) {
}
type libraryPanel struct {
ID int64 `json:"ID"`
OrgID int64 `json:"OrgID"`
FolderID int64 `json:"FolderID"`
UID string `json:"UID"`
Name string `json:"Name"`
ID int64 `json:"id"`
OrgID int64 `json:"orgId"`
FolderID int64 `json:"folderId"`
UID string `json:"uid"`
Name string `json:"name"`
}
type libraryPanelResult struct {