Fix framework rollback manager tests

This commit is contained in:
vishalnayak 2016-05-14 19:35:36 -04:00
parent 4122ed860b
commit 6f65d9293a
1 changed files with 4 additions and 4 deletions

View File

@ -314,8 +314,8 @@ func TestBackendHandleRequest_rollback(t *testing.T) {
}
b := &Backend{
Rollback: callback,
RollbackMinAge: 1 * time.Millisecond,
WALRollback: callback,
WALRollbackMinAge: 1 * time.Millisecond,
}
storage := new(logical.InmemStorage)
@ -349,8 +349,8 @@ func TestBackendHandleRequest_rollbackMinAge(t *testing.T) {
}
b := &Backend{
Rollback: callback,
RollbackMinAge: 5 * time.Second,
WALRollback: callback,
WALRollbackMinAge: 5 * time.Second,
}
storage := new(logical.InmemStorage)