Merge pull request #5786 from influxdata/mr-fix-tsm1-test-compilation

Fix non-compiling test
pull/5794/head
Mark Rushakoff 2016-02-22 14:04:05 -08:00
commit 7f457b8852
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ func TestCache_CacheWriteMulti_Duplicates(t *testing.T) {
v5 := NewValue(time.Unix(5, 0).UTC(), 3.0) v5 := NewValue(time.Unix(5, 0).UTC(), 3.0)
values1 := Values{v3, v4, v5} values1 := Values{v3, v4, v5}
c := NewCache(0) c := NewCache(0, "")
if err := c.WriteMulti(map[string][]Value{"foo": values0}); err != nil { if err := c.WriteMulti(map[string][]Value{"foo": values0}); err != nil {
t.Fatalf("failed to write key foo to cache: %s", err.Error()) t.Fatalf("failed to write key foo to cache: %s", err.Error())