in more tests, after closing accounts, check the last reference is indeed gone

This commit is contained in:
Mechiel Lukkien
2024-04-16 17:33:54 +02:00
parent afc47c8108
commit abd098e8c0
13 changed files with 30 additions and 5 deletions

View File

@ -69,7 +69,10 @@ func FuzzServer(f *testing.F) {
if err != nil {
f.Fatalf("open account: %v", err)
}
defer acc.Close()
defer func() {
acc.Close()
acc.CheckClosed()
}()
err = acc.SetPassword(log, password0)
if err != nil {
f.Fatalf("set password: %v", err)