mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
lease: test minLeaseTTL limit
Test whether lease's ttl is set to minLeaseTTL when passing a ttl smaller than minLeaseTTL to Grant function.
This commit is contained in:
parent
80aa810309
commit
28a22075ca
@ -49,6 +49,10 @@ func TestLessorGrant(t *testing.T) {
|
||||
if err != nil {
|
||||
t.Fatalf("could not grant lease 1 (%v)", err)
|
||||
}
|
||||
if l.ttl != minLeaseTTL {
|
||||
t.Fatalf("ttl = %v, expect minLeaseTTL %v", l.ttl, minLeaseTTL)
|
||||
}
|
||||
|
||||
gl := le.Lookup(l.ID)
|
||||
|
||||
if !reflect.DeepEqual(gl, l) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user