etcdserver: address golangci var-naming issues

Signed-off-by: Ivan Valdes <ivan@vald.es>
This commit is contained in:
Ivan Valdes
2024-03-18 14:04:10 -07:00
parent 63e394d090
commit c613b78e6c
21 changed files with 124 additions and 113 deletions

View File

@ -21,7 +21,7 @@ import (
)
func TestHeapPushPop(t *testing.T) {
h := newTtlKeyHeap()
h := newTTLKeyHeap()
// add from older expire time to earlier expire time
// the path is equal to ttl from now
@ -45,7 +45,7 @@ func TestHeapPushPop(t *testing.T) {
}
func TestHeapUpdate(t *testing.T) {
h := newTtlKeyHeap()
h := newTTLKeyHeap()
kvs := make([]*node, 10)