mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-11-10 14:17:56 +01:00
Use the new feature of Go 1.24, fix linter warnings. This change was produced by: - running golangci-lint run --fix - sed 's/context.Background/t.Context/' -i `git grep -l context.Background | grep test.go` - manually fixing broken tests - itest, lntest: use ht.Context() where ht or hn is available - in HarnessNode.Stop() we keep using context.Background(), because it is called from a cleanup handler in which t.Context() is canceled already.
19 lines
393 B
Go
19 lines
393 B
Go
//go:build kvdb_etcd
|
|
// +build kvdb_etcd
|
|
|
|
package etcd
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/btcsuite/btcwallet/walletdb/walletdbtest"
|
|
)
|
|
|
|
// TestWalletDBInterface performs the WalletDB interface test suite for the
|
|
// etcd database driver.
|
|
func TestWalletDBInterface(t *testing.T) {
|
|
f := NewEtcdTestFixture(t)
|
|
cfg := f.BackendConfig()
|
|
walletdbtest.TestInterface(t, dbType, t.Context(), &cfg)
|
|
}
|