peer: use T.TempDir to create temporary test directory

Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>
This commit is contained in:
Eng Zer Jun 2022-08-15 21:08:10 +08:00
parent f3dec8fbb0
commit 71185d46fb
No known key found for this signature in database
GPG key ID: DAEBBD2E34C111E6

View file

@ -2,7 +2,6 @@ package peer
import (
"bytes"
"io/ioutil"
"testing"
"time"
@ -1003,10 +1002,7 @@ func TestPeerCustomMessage(t *testing.T) {
t.Parallel()
// Set up node Alice.
alicePath, err := ioutil.TempDir("", "alicedb")
require.NoError(t, err)
dbAlice, err := channeldb.Open(alicePath)
dbAlice, err := channeldb.Open(t.TempDir())
require.NoError(t, err)
aliceKey, err := btcec.NewPrivateKey()