Commit ccbdb29f by Torkel Ödegaard

fixed unit tests

parent 8daff73b
...@@ -114,7 +114,7 @@ func TestDashboardDataAccess(t *testing.T) { ...@@ -114,7 +114,7 @@ func TestDashboardDataAccess(t *testing.T) {
Convey("Should be able to search for a dashboard folder's children", func() { Convey("Should be able to search for a dashboard folder's children", func() {
query := search.FindPersistedDashboardsQuery{ query := search.FindPersistedDashboardsQuery{
OrgId: 1, OrgId: 1,
FolderId: savedFolder.Id, FolderIds: []int64{savedFolder.Id},
SignedInUser: &m.SignedInUser{OrgId: 1}, SignedInUser: &m.SignedInUser{OrgId: 1},
} }
...@@ -218,7 +218,7 @@ func TestDashboardDataAccess(t *testing.T) { ...@@ -218,7 +218,7 @@ func TestDashboardDataAccess(t *testing.T) {
query := search.FindPersistedDashboardsQuery{ query := search.FindPersistedDashboardsQuery{
OrgId: 1, OrgId: 1,
FolderId: savedFolder.Id, FolderIds: []int64{savedFolder.Id},
SignedInUser: &m.SignedInUser{}, SignedInUser: &m.SignedInUser{},
} }
......
...@@ -110,7 +110,7 @@ func TestDeleteExpiredVersions(t *testing.T) { ...@@ -110,7 +110,7 @@ func TestDeleteExpiredVersions(t *testing.T) {
versionsToWrite := 10 versionsToWrite := 10
setting.DashboardVersionsToKeep = versionsToKeep setting.DashboardVersionsToKeep = versionsToKeep
savedDash := insertTestDashboard("test dash 53", 1, "diff-all") savedDash := insertTestDashboard("test dash 53", 1, 0, false, "diff-all")
for i := 0; i < versionsToWrite-1; i++ { for i := 0; i < versionsToWrite-1; i++ {
updateTestDashboard(savedDash, map[string]interface{}{ updateTestDashboard(savedDash, map[string]interface{}{
"tags": "different-tag", "tags": "different-tag",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment