style(alerting): add fmt fixes

This commit is contained in:
bergquist
2016-06-08 08:50:11 +02:00
parent 8d4aa5d114
commit 366fb11416
2 changed files with 6 additions and 6 deletions

View File

@@ -15,7 +15,7 @@ func TestAlertingDataAccess(t *testing.T) {
testDash := insertTestDashboard("dashboard with alerts", 1, "alert") testDash := insertTestDashboard("dashboard with alerts", 1, "alert")
items := []*m.AlertRule{ items := []*m.AlertRule{
&m.AlertRule{ {
PanelId: 1, PanelId: 1,
DashboardId: testDash.Id, DashboardId: testDash.Id,
OrgId: testDash.OrgId, OrgId: testDash.OrgId,
@@ -117,19 +117,19 @@ func TestAlertingDataAccess(t *testing.T) {
Convey("Multiple alerts per dashboard", func() { Convey("Multiple alerts per dashboard", func() {
multipleItems := []*m.AlertRule{ multipleItems := []*m.AlertRule{
&m.AlertRule{ {
DashboardId: testDash.Id, DashboardId: testDash.Id,
PanelId: 1, PanelId: 1,
Query: "1", Query: "1",
OrgId: 1, OrgId: 1,
}, },
&m.AlertRule{ {
DashboardId: testDash.Id, DashboardId: testDash.Id,
PanelId: 2, PanelId: 2,
Query: "2", Query: "2",
OrgId: 1, OrgId: 1,
}, },
&m.AlertRule{ {
DashboardId: testDash.Id, DashboardId: testDash.Id,
PanelId: 3, PanelId: 3,
Query: "3", Query: "3",
@@ -179,7 +179,7 @@ func TestAlertingDataAccess(t *testing.T) {
Convey("When dashboard is removed", func() { Convey("When dashboard is removed", func() {
items := []*m.AlertRule{ items := []*m.AlertRule{
&m.AlertRule{ {
PanelId: 1, PanelId: 1,
DashboardId: testDash.Id, DashboardId: testDash.Id,
Query: "Query", Query: "Query",

View File

@@ -14,7 +14,7 @@ func TestAlertingStateAccess(t *testing.T) {
testDash := insertTestDashboard("dashboard with alerts", 1, "alert") testDash := insertTestDashboard("dashboard with alerts", 1, "alert")
items := []*m.AlertRule{ items := []*m.AlertRule{
&m.AlertRule{ {
PanelId: 1, PanelId: 1,
DashboardId: testDash.Id, DashboardId: testDash.Id,
OrgId: testDash.OrgId, OrgId: testDash.OrgId,