store: remove unused ACL field

This commit is contained in:
Xiang Li
2015-02-26 14:49:42 -08:00
committed by Yicheng Qin
parent a4dab7ad75
commit d459ae0df3
3 changed files with 11 additions and 18 deletions

View File

@ -28,7 +28,7 @@ func TestHeapPushPop(t *testing.T) {
for i := 0; i < 10; i++ {
path := fmt.Sprintf("%v", 10-i)
m := time.Duration(10 - i)
n := newKV(nil, path, path, 0, nil, "", time.Now().Add(time.Second*m))
n := newKV(nil, path, path, 0, nil, time.Now().Add(time.Second*m))
h.push(n)
}
@ -54,7 +54,7 @@ func TestHeapUpdate(t *testing.T) {
for i := range kvs {
path := fmt.Sprintf("%v", 10-i)
m := time.Duration(10 - i)
n := newKV(nil, path, path, 0, nil, "", time.Now().Add(time.Second*m))
n := newKV(nil, path, path, 0, nil, time.Now().Add(time.Second*m))
kvs[i] = n
h.push(n)
}