lnd: replace defer cleanup with t.Cleanup

Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>
This commit is contained in:
Eng Zer Jun 2022-08-27 15:09:02 +08:00
parent 228f1e36c4
commit 604a355db6
No known key found for this signature in database
GPG Key ID: DAEBBD2E34C111E6
2 changed files with 2 additions and 3 deletions

View File

@ -75,7 +75,7 @@ func TestTLSAutoRegeneration(t *testing.T) {
if err != nil {
t.Fatalf("couldn't retrieve TLS config")
}
defer cleanUp()
t.Cleanup(cleanUp)
// Grab the certificate to test that getTLSConfig did its job correctly
// and generated a new cert.

View File

@ -37,8 +37,7 @@ func TestWitnessBeaconIntercept(t *testing.T) {
[]byte{2},
)
require.NoError(t, err)
defer subscription.CancelSubscription()
t.Cleanup(subscription.CancelSubscription)
require.NoError(t, interceptedFwd.Settle(preimage))