Comment out panicking test until proper support is implemented.

This commit is contained in:
Julius Volz 2013-03-13 16:28:12 -07:00 committed by Matt T. Proud
parent e2fb497eba
commit 3621148e7f

View file

@ -242,30 +242,30 @@ func testMakeView(t test.Tester) {
}, },
}, },
}, },
{ //{
data: buildSamples(instant, instant.Add(400*time.Second), time.Second, metric), // data: buildSamples(instant, instant.Add(400*time.Second), time.Second, metric),
in: in{ // in: in{
atTime: []getValuesAtTimeOp{ // atTime: []getValuesAtTimeOp{
{ // {
time: instant.Add(time.Second * 100), // time: instant.Add(time.Second * 100),
}, // },
}, // },
}, // },
out: out{ // out: out{
atTime: [][]model.SamplePair{ // atTime: [][]model.SamplePair{
{ // {
{ // {
Timestamp: instant.Add(time.Second * 100), // Timestamp: instant.Add(time.Second * 100),
Value: 100, // Value: 100,
}, // },
{ // {
Timestamp: instant.Add(time.Second * 100), // Timestamp: instant.Add(time.Second * 100),
Value: 101, // Value: 101,
}, // },
}, // },
}, // },
}, // },
}, //},
} }
) )