Fixed failing events test and issue with dashboard list panel

This commit is contained in:
Torkel Ödegaard
2015-02-08 11:24:03 +01:00
parent c4fe9d50bf
commit c9f06e1da1
2 changed files with 5 additions and 3 deletions

View File

@@ -18,7 +18,7 @@ func TestEventCreation(t *testing.T) {
Timestamp: time.Unix(1231421123, 223),
}
wire, _ := ToOnWriteEvent(e)
wire, _ := ToOnWriteEvent(&e)
So(e.Timestamp.Unix(), ShouldEqual, wire.Timestamp.Unix())
So(wire.EventType, ShouldEqual, "TestEvent")
})