mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-08-29 23:21:12 +02:00
We want `context.TODO()` to be high signal in the code-base. It should signal clearly that work is required to thread parent context through to the call-site. So to keep the signal-to-noise ratio high, we remove any context.TODO() calls from tests since these will never need to be replace by a parent context. After this commit, there is only a single context.TODO() left in the code-base.
20 lines
413 B
Go
20 lines
413 B
Go
//go:build kvdb_etcd
|
|
// +build kvdb_etcd
|
|
|
|
package etcd
|
|
|
|
import (
|
|
"context"
|
|
"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, context.Background(), &cfg)
|
|
}
|